summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorbruvzg <7645683+bruvzg@users.noreply.github.com>2023-03-14 16:12:20 +0200
committerbruvzg <7645683+bruvzg@users.noreply.github.com>2023-03-14 20:04:58 +0200
commit42a30c76d9495d15c6f403f47b1adcf39f998969 (patch)
tree5f9dd7d47c782dc94f1b95f72e65321ee9a20432
parent79454bfd3b218f5d2b2bb1da2013a3f359615d63 (diff)
downloadredot-engine-42a30c76d9495d15c6f403f47b1adcf39f998969.tar.gz
[macOS] Remove unnecessary debug prints.
-rw-r--r--platform/macos/godot_main_macos.mm9
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;