Removed junk function

This commit is contained in:
2025-07-24 11:10:50 +02:00
parent 193455259c
commit c4e1f130d8

View File

@@ -50,10 +50,9 @@ const char* DONATION_URL = "https://www.paypal.com/donate/?business=W92C47N3WZZZ
static void LoadFixDLL() static void LoadFixDLL()
{ {
if (fixLib) return; if (fixLib) return;
fixLib = GetModuleHandleA("TLOUCore.asi"); // ou EmpireOfTheAntsCore.dll si tu gardes le .dll fixLib = GetModuleHandleA("TLOUCore.asi");
if (!fixLib) { if (!fixLib) {
// Optionnel: message d'erreur ou fallback
MessageBoxA(nullptr, "Impossible to laod game core dll", "Erreur", MB_OK); MessageBoxA(nullptr, "Impossible to laod game core dll", "Erreur", MB_OK);
return; return;
} }
@@ -68,7 +67,7 @@ static void LoadFixDLL()
GetFOVIn = (GetFloatFn)GetProcAddress(fixLib, "GetFOVIn"); GetFOVIn = (GetFloatFn)GetProcAddress(fixLib, "GetFOVIn");
GetFOVOut = (GetFloatFn)GetProcAddress(fixLib, "GetFOVOut");; GetFOVOut = (GetFloatFn)GetProcAddress(fixLib, "GetFOVOut");;
// Appliquer les valeurs initiales chargées // Apply initial settings loaded from ini file
if (SetFOV) SetFOV(worldFOVvalue); if (SetFOV) SetFOV(worldFOVvalue);
if (SetCamera) SetCamera(cameraDistancevalue); if (SetCamera) SetCamera(cameraDistancevalue);
if (SetSharpness) SetSharpness(sharpnessvalue); if (SetSharpness) SetSharpness(sharpnessvalue);
@@ -252,15 +251,6 @@ static void on_overlay_draw(reshade::api::effect_runtime* runtime)
ImGui::Text("FOV In: %.2f, Out : %.2f", GetFOVIn(), GetFOVOut()); ImGui::Text("FOV In: %.2f, Out : %.2f", GetFOVIn(), GetFOVOut());
} }
DWORD WINAPI MainThread(LPVOID)
{
// Tu peux ensuite réactiver LoadSettings/LoadFixDLL ici
LoadSettings();
reshade::register_overlay("The Last Of Us : Part I", &on_overlay_draw);
LoadFixDLL();
return 0;
}
// Main dll intrance // Main dll intrance
BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD ul_reason_for_call, LPVOID) BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD ul_reason_for_call, LPVOID)
{ {