Skip to content

Commit

Permalink
Fix incorrect default value for /quit option of PIMELauncher.
Browse files Browse the repository at this point in the history
  • Loading branch information
PCMan committed Feb 2, 2016
1 parent aa297d9 commit 6d20995
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion PIMELauncher/PIMELauncher.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ static void launchServer() {


int WINAPI WinMain(HINSTANCE hinst, HINSTANCE hprev, LPSTR cmd, int show) {
bool quit = true;
bool quit = false;
int argc;
wchar_t** argv = CommandLineToArgvW(GetCommandLine(), &argc);
// parse command line options
Expand Down

0 comments on commit 6d20995

Please sign in to comment.