blob: 9897fe0b9612f296c3cc8d03984dbef99411bc05 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
--- a/brainworkshop.pyw 2010-10-15 19:06:16.529006906 +0200
+++ b/brainworkshop.pyw 2010-10-15 19:08:17.095632136 +0200
@@ -35,8 +35,10 @@
NOVBO = True
VSYNC = False
DEBUG = False
-FOLDER_RES = 'res'
-FOLDER_DATA = 'data'
+FOLDER_RES = '/usr/share/games/brainworkshop'
+FOLDER_DATA = os.path.expanduser('~/.brainworkshop')
+if not os.path.isdir(FOLDER_DATA):
+ os.mkdir(FOLDER_DATA)
CONFIGFILE = 'config.ini'
STATS_BINARY = 'logfile.dat'
USER = 'default'
|