summaryrefslogtreecommitdiff
path: root/main.h
diff options
context:
space:
mode:
authorReimar <Reimar@Leike.name>2015-12-12 16:20:42 +0100
committerReimar <Reimar@Leike.name>2015-12-12 16:20:42 +0100
commit354cd9ff21e878c9a34866b0c3916e42e226d105 (patch)
tree8e6f2123e503c2f32eed35e629c6c0b9c01352d8 /main.h
parent8c66c87d920340b116c539a56505b32629275b6a (diff)
downloadRCade-354cd9ff21e878c9a34866b0c3916e42e226d105.tar
RCade-354cd9ff21e878c9a34866b0c3916e42e226d105.tar.gz
RCade-354cd9ff21e878c9a34866b0c3916e42e226d105.tar.bz2
RCade-354cd9ff21e878c9a34866b0c3916e42e226d105.tar.xz
RCade-354cd9ff21e878c9a34866b0c3916e42e226d105.zip
Now taking env variable RCADE_DATA and RCADE_SAVE. Default: data/ and save/ . also old saves are not compatibleHEADmaster
Diffstat (limited to 'main.h')
-rw-r--r--main.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/main.h b/main.h
index 17c0e3c..207e05e 100644
--- a/main.h
+++ b/main.h
@@ -15,6 +15,8 @@ using namespace std;
15#define GAME_QUIT (1 << 28) 15#define GAME_QUIT (1 << 28)
16 16
17 17
18string SAVE_PATH = "save/";
19string DATA_PATH = "data/";
18const int SCREEN_WIDTH = 500; 20const int SCREEN_WIDTH = 500;
19const int SCREEN_HEIGHT = 500; 21const int SCREEN_HEIGHT = 500;
20const int SCREEN_BPP = 32; 22const int SCREEN_BPP = 32;