From 37d9e855f1c04ad7ea6b9643bb59a8ac5137290d Mon Sep 17 00:00:00 2001 From: ThirteenAG Date: Fri, 20 Oct 2023 17:46:38 +0800 Subject: [PATCH] build fix --- source/ResidentEvil.FusionFix/dllmain.cpp | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/source/ResidentEvil.FusionFix/dllmain.cpp b/source/ResidentEvil.FusionFix/dllmain.cpp index 4a17c02f1..a238252cc 100644 --- a/source/ResidentEvil.FusionFix/dllmain.cpp +++ b/source/ResidentEvil.FusionFix/dllmain.cpp @@ -2,7 +2,6 @@ #include "LEDEffects.h" #include #include -#include static bool bLogiLedInitialized = false; @@ -162,19 +161,20 @@ void Init() *(uint32_t*)(regs.esp + 0x58) = regs.ebx; std::sort(resList.begin(), resList.end(), [](const std::string& lhs, const std::string& rhs) - { - int32_t x1, y1, x2, y2; - sscanf_s(lhs.c_str(), "%dx%d", &x1, &y1); - sscanf_s(rhs.c_str(), "%dx%d", &x2, &y2); - return (x1 != x2) ? (x1 < x2) : (x1 * y1 < x2 * y2); - }); + { + int32_t x1, y1, x2, y2; + sscanf_s(lhs.c_str(), "%dx%d", &x1, &y1); + sscanf_s(rhs.c_str(), "%dx%d", &x2, &y2); + return (x1 != x2) ? (x1 < x2) : (x1 * y1 < x2 * y2); + }); resList.erase(std::unique(std::begin(resList), std::end(resList)), resList.end()); - for (auto&& [idx, str] : std::ranges::views::enumerate(resList)) + for (auto idx = 0; idx < resList.size(); idx++) { int x = 0, y = 0; - sscanf_s(str.c_str(), "%dx%d", &x, &y); - resListString.emplace_back(str.c_str(), idx); + auto str = resList[idx].c_str(); + sscanf_s(str, "%dx%d", &x, &y); + resListString.emplace_back(str, idx); resListNum.emplace_back(x, y, idx); }