summary refs log tree commit diff stats
path: root/src/game.h
diff options
context:
space:
mode:
authorStar Rauchenberger <fefferburbia@gmail.com>2022-03-20 11:52:09 -0400
committerStar Rauchenberger <fefferburbia@gmail.com>2022-03-20 11:52:09 -0400
commita07d588c94f68cdc559ceb016c031c9199f0b868 (patch)
tree839b078d07f3c727bcce8f3ce340c2639e306143 /src/game.h
parent9458529e94ec3135a5a6fa0fbaf7e0ce1459168b (diff)
downloadether-a07d588c94f68cdc559ceb016c031c9199f0b868.tar.gz
ether-a07d588c94f68cdc559ceb016c031c9199f0b868.tar.bz2
ether-a07d588c94f68cdc559ceb016c031c9199f0b868.zip
we can now build a mac bundle!
Diffstat (limited to 'src/game.h')
-rw-r--r--src/game.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/game.h b/src/game.h index 3b092dd..914df53 100644 --- a/src/game.h +++ b/src/game.h
@@ -13,6 +13,7 @@
13#include "consts.h" 13#include "consts.h"
14#include "sign.h" 14#include "sign.h"
15#include "menu.h" 15#include "menu.h"
16#include "runtime.h"
16 17
17class Renderer; 18class Renderer;
18 19
@@ -88,7 +89,7 @@ public:
88 int player_oldx = 0; 89 int player_oldx = 0;
89 int player_oldy = 0; 90 int player_oldy = 0;
90 bool renderPlayer = true; 91 bool renderPlayer = true;
91 Animation playerAnim {"../res/player_anim.txt"}; 92 Animation playerAnim {Runtime::getResourcePath("player_anim.txt")};
92 93
93 int maxZoom = INIT_ZOOM; 94 int maxZoom = INIT_ZOOM;
94 int curZoom = INIT_ZOOM; 95 int curZoom = INIT_ZOOM;