summaryrefslogtreecommitdiff
path: root/main.cpp
diff options
context:
space:
mode:
authorCaldfir2012-03-24 16:04:46 -0700
committerCaldfir2012-03-24 16:04:46 -0700
commit40b6bd57ed1dd58c93c57661555d54f4aefc03a9 (patch)
tree1a190cfeefa3afd914ee1ee681eb19ebc99a4883 /main.cpp
parent4281f2672bba95491feaf2820232802ea389e6b7 (diff)
downloadstonesense-40b6bd57ed1dd58c93c57661555d54f4aefc03a9.tar.gz
stonesense-40b6bd57ed1dd58c93c57661555d54f4aefc03a9.tar.bz2
stonesense-40b6bd57ed1dd58c93c57661555d54f4aefc03a9.tar.xz
Updated stuff, and added in a 'Military' special attribute to the creature configuration.
Diffstat (limited to 'main.cpp')
-rw-r--r--main.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/main.cpp b/main.cpp
index f2335cf..fd6d9e8 100644
--- a/main.cpp
+++ b/main.cpp
@@ -86,6 +86,7 @@ void LogError(const char* msg, ...){
FILE* fp = fopen( "Stonesense.log", "a");
if(fp)
vfprintf( fp, msg, arglist );
+// Core::printerr(msg, arglist);
va_end(arglist);
fclose(fp);
}
@@ -100,6 +101,7 @@ void LogVerbose(const char* msg, ...){
FILE* fp = fopen( "Stonesense.log", "a");
if(fp)
vfprintf( fp, msg, arglist );
+// Core::printerr(msg, arglist);
va_end(arglist);
fclose(fp);
}