diff options
| author | gingerBill <bill@gingerbill.org> | 2022-05-04 16:58:40 +0100 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2022-05-04 16:58:40 +0100 |
| commit | 5931e2383b30ecf7f76bd435b818c977f145b498 (patch) | |
| tree | 331be54b316cbd0e67a190bbb16e8c02809b3f78 /src/main.cpp | |
| parent | e4743b15b15ea5f1b2611bbc1718274ebb03bf03 (diff) | |
Remove unneeded `#if defined`
Diffstat (limited to 'src/main.cpp')
| -rw-r--r-- | src/main.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/main.cpp b/src/main.cpp index 07d6f6165..561fa0fca 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -2863,11 +2863,7 @@ int main(int arg_count, char const **arg_ptr) { String exe_name = path_to_string(heap_allocator(), build_context.build_paths[BuildPath_Output]); defer (gb_free(heap_allocator(), exe_name.text)); - #if defined(GB_SYSTEM_WINDOWS) - return system_exec_command_line_app("odin run", "%.*s %.*s", LIT(exe_name), LIT(run_args_string)); - #else return system_exec_command_line_app("odin run", "\"%.*s\" %.*s", LIT(exe_name), LIT(run_args_string)); - #endif } return 0; } |