diff options
| author | Ginger Bill <bill@gingerbill.org> | 2016-09-21 23:26:31 +0100 |
|---|---|---|
| committer | Ginger Bill <bill@gingerbill.org> | 2016-09-21 23:26:31 +0100 |
| commit | 664c2cd7a587feb18f02378506bdade2503343d3 (patch) | |
| tree | 2c0b5e972eaa2cc74ec67c377a9bd8f6e284b24e /src/main.cpp | |
| parent | 33bd3f635f9d98636ab4631fac9cff4e9d7fdb4d (diff) | |
Fix enum type comparison; Start demo 003 code
Diffstat (limited to 'src/main.cpp')
| -rw-r--r-- | src/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.cpp b/src/main.cpp index e4bf5fb7d..1e0528863 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -22,7 +22,7 @@ i32 win32_exec_command_line_app(char *fmt, ...) { va_end(va); if (CreateProcessA(NULL, cmd_line, - NULL, NULL, true, 0, NULL, NULL, + NULL, NULL, true, 0, NULL, NULL, &start_info, &pi)) { WaitForSingleObject(pi.hProcess, INFINITE); |