diff options
author | bruvzg <7645683+bruvzg@users.noreply.github.com> | 2023-03-14 16:12:20 +0200 |
---|---|---|
committer | Yuri Sizov <yuris@humnom.net> | 2023-03-16 16:35:54 +0100 |
commit | 577afedc40d40e616db26edeb8800828f22a526f (patch) | |
tree | 06e7944b6141b8cf9c5b3ed228d931dd0d44ea17 /platform | |
parent | d23922ffebe48f29126c003411495737d07e5a9f (diff) |
[macOS] Remove unnecessary debug prints.
(cherry picked from commit 42a30c76d9495d15c6f403f47b1adcf39f998969)
Diffstat (limited to 'platform')
-rw-r--r-- | platform/macos/godot_main_macos.mm | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/platform/macos/godot_main_macos.mm b/platform/macos/godot_main_macos.mm index 29125c29a9..e98ab08127 100644 --- a/platform/macos/godot_main_macos.mm +++ b/platform/macos/godot_main_macos.mm @@ -53,21 +53,12 @@ int main(int argc, char **argv) { int first_arg = 1; const char *dbg_arg = "-NSDocumentRevisionsDebugMode"; - printf("arguments\n"); for (int i = 0; i < argc; i++) { if (strcmp(dbg_arg, argv[i]) == 0) { first_arg = i + 2; } - printf("%i: %s\n", i, argv[i]); } -#ifdef DEBUG_ENABLED - // Lets report the path we made current after all that. - char cwd[4096]; - getcwd(cwd, 4096); - printf("Current path: %s\n", cwd); -#endif - OS_MacOS os; Error err; |