use correct return type

This commit is contained in:
ChrisMiuchiz 2019-10-15 17:49:30 -04:00
parent c913bbb589
commit 3a61953d5c
1 changed files with 1 additions and 1 deletions

View File

@ -207,7 +207,7 @@ extern "C" __declspec(dllexport) BOOL APIENTRY DllMain(HINSTANCE hinstDLL, DWORD
// Don't allow this to run more than once // Don't allow this to run more than once
if (already_ran) if (already_ran)
return 1; return true;
already_ran = true; already_ran = true;