Remove goto from isleapp.cpp

This commit is contained in:
ChrisMiuchiz 2023-10-07 23:52:50 -04:00
parent 5f8bde9e48
commit 6b2dc7a6fb

View File

@ -251,15 +251,14 @@ int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine
} }
if (g_mousedown == 0) { if (g_mousedown == 0) {
LAB_00401bc7: // Nothing
if (g_mousemoved) { }
g_mousemoved = FALSE; else if (g_mousemoved && g_isle) {
}
} else if (g_mousemoved) {
if (g_isle) {
g_isle->Tick(0); g_isle->Tick(0);
} }
goto LAB_00401bc7;
if (g_mousemoved) {
g_mousemoved = FALSE;
} }
} }
} }