diff Monsters.cpp @ 1113:39eaa6b00141

something to bool cast (performance warning) mostly fixed
author Grumpy7
date Tue, 28 May 2013 00:19:45 +0200
parents 5d5c78088274
children 29a8defbad9e
line wrap: on
line diff
--- a/Monsters.cpp	Mon May 27 23:29:39 2013 +0200
+++ b/Monsters.cpp	Tue May 28 00:19:45 2013 +0200
@@ -1166,5 +1166,6 @@
         {
         if( (!_stricmp(pMonsters[i].pMonsterName, pMonsterName)))
             return i;
-        }
     }
+    assert(false && "Monster not found!");
+}