Cleanup formatting

This commit is contained in:
michaelangel007 2017-04-27 14:59:41 -07:00
parent f8f881d41a
commit 7f88196d3e

View File

@ -989,10 +989,11 @@ int APIENTRY WinMain(HINSTANCE passinstance, HINSTANCE, LPSTR lpCmdLine, int)
lpCmdLine = GetCurrArg(lpNextArg);
lpNextArg = GetNextArg(lpNextArg);
g_uMaxExPages = atoi(lpCmdLine);
g_uMaxExPages = atoi(lpCmdLine);
if (g_uMaxExPages > kMaxExMemoryBanks)
g_uMaxExPages = kMaxExMemoryBanks;
else if (g_uMaxExPages < 1)
else
if (g_uMaxExPages < 1)
g_uMaxExPages = 1;
}
#endif