Update of /cvsroot/moeng/BBRpg/src
In directory sc8-pr-cvs7.sourceforge.net:/tmp/cvs-serv536
Modified Files:
rpg.cpp
Log Message:
Changed the engine back to using gui.dat now that the corruption problem has been solved.
Index: rpg.cpp
===================================================================
RCS file: /cvsroot/moeng/BBRpg/src/rpg.cpp,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -d -r1.14 -r1.15
--- rpg.cpp 8 Feb 2007 00:03:32 -0000 1.14
+++ rpg.cpp 9 Feb 2007 15:29:41 -0000 1.15
@@ -166,10 +166,10 @@
console.log(CON_LOG, CON_ALWAYS, "Creating tile repository...");
tileRepository = new TileRepository();
- console.log(CON_LOG, CON_ALWAYS, "Loading engine.dat...");
- engine_data = load_datafile("engine.dat");
+ console.log(CON_LOG, CON_ALWAYS, "Loading gui.dat...");
+ engine_data = load_datafile("gui.dat");
if (!engine_data) {
- console.log(CON_QUIT, CON_ALWAYS, "Error while loading: engine.dat");
+ console.log(CON_QUIT, CON_ALWAYS, "Error while loading: gui.dat");
}
// Set font to use
|