Fix macro for MaxQi ini-file name to conform to Makefile
authorH.G. Muller <h.g.muller@hccnet.nl>
Thu, 6 May 2010 14:00:50 +0000 (16:00 +0200)
committerH.G. Muller <h.g.muller@hccnet.nl>
Thu, 6 May 2010 14:00:50 +0000 (16:00 +0200)
It was defined as QINI_file in stead of INI_FILE.

maxqi.c

diff --git a/maxqi.c b/maxqi.c
index 9b15595..63c1119 100644 (file)
--- a/maxqi.c
+++ b/maxqi.c
@@ -88,14 +88,14 @@ int GetTickCount() // with thanks to Tord
        gettimeofday(&t, NULL);\r
        return t.tv_sec*1000 + t.tv_usec/1000;\r
 }\r
-#ifndef QINI_FILE 
-#define QINI_FILE "qmax.ini"
+#ifndef INI_FILE 
+#define INI_FILE "qmax.ini"
 #endif
 \r
 #else\r
 \r
 #include <windows.h>\r
-#define QINI_FILE "qmax.ini"\r
+#define INI_FILE "qmax.ini"\r
 \r
 #endif\r
 \r
@@ -132,7 +132,7 @@ int Fifty;
 int UnderProm;\r
 int GameNr;\r
 char piecename[32], piecetype[32], defaultchar[]=".PPKNBRQEWFMACHG";\r
-char *inifile = QINI_FILE;\r
+char *inifile = INI_FILE;\r
 \r
 int Ticks, tlim, Setup, SetupQ;\r
 \r