fixed asteroids saving

This commit is contained in:
jbohack
2023-01-18 10:00:18 -05:00
parent e9b9a9f0de
commit 66fcf66f6a
+2 -2
View File
@@ -23,8 +23,8 @@
#define MAXBUL 5 /* Max bullets on the screen. */
#define MAXAST 32 /* Max asteroids on the screen. */
#define SHIP_HIT_ANIMATION_LEN 15
#define SAVING_DIRECTORY "/ext/apps/Games"
#define SAVING_FILENAME "/ext/apps_data/asteroids/game_asteroids.save"
#define SAVING_DIRECTORY "/ext/apps_data/asteroids"
#define SAVING_FILENAME SAVING_DIRECTORY "/game_asteroids.save"
#ifndef PI
#define PI 3.14159265358979f
#endif