mirror of
https://github.com/isledecomp/isle.git
synced 2026-01-24 00:31:16 +00:00
Remove goto from isleapp.cpp
This commit is contained in:
parent
5f8bde9e48
commit
6b2dc7a6fb
@ -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) {
|
else if (g_mousemoved && g_isle) {
|
||||||
if (g_isle) {
|
|
||||||
g_isle->Tick(0);
|
g_isle->Tick(0);
|
||||||
}
|
}
|
||||||
goto LAB_00401bc7;
|
|
||||||
|
if (g_mousemoved) {
|
||||||
|
g_mousemoved = FALSE;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user