- Apparently, YASM is not a suitable substitute for NASM when doing Win32 builds.
- Removed extraneous printf parameter for Texman.Init startup message. - Added newlines to the ends of a few headers that were missing them. - Fixed more GCC errors/warnings. SVN r1232 (trunk)
This commit is contained in:
parent
9802278357
commit
00b21e4b96
15 changed files with 30 additions and 33 deletions
|
|
@ -346,7 +346,7 @@ bool ST_Responder (event_t *ev)
|
|||
static int counts[] = { countof(DoomCheats), countof(HereticCheats), countof(HexenCheats),
|
||||
countof(StrifeCheats), countof(ChexCheats), countof(SpecialCheats) };
|
||||
|
||||
for (int i=0; i<countof(cheatlists); i++)
|
||||
for (size_t i=0; i<countof(cheatlists); i++)
|
||||
{
|
||||
if (CheatCheckList(ev, cheatlists[i], counts[i])) return true;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue