about summary refs log tree commit diff
path: root/src/game/client
diff options
context:
space:
mode:
Diffstat (limited to 'src/game/client')
-rw-r--r--src/game/client/menu.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/game/client/menu.cpp b/src/game/client/menu.cpp
index 805da622..3066819c 100644
--- a/src/game/client/menu.cpp
+++ b/src/game/client/menu.cpp
@@ -992,7 +992,11 @@ static int settings_render()
 	if (ui_do_button(&save_button, "Save", 0, 482, 490, 128, 48, draw_teewars_button))
 	{
 		config = config_copy;
+#ifdef CONF_PLATFORM_MACOSX
+		config_save("~/.teewars");
+#else
 		config_save("default.cfg");
+#endif
 		screen = SCREEN_MAIN;
 	}