Fix a bug where num_games was one too big.

git-svn-id: svn://katsu.triplehelix.org/dgamelaunch/trunk@402 db0b04b0-f4d1-0310-9a6d-de3e77497b0e
This commit is contained in:
Pasi Kallinen 2008-01-06 10:13:29 +00:00
parent 73a9f978cd
commit dec0e3764f
1 changed files with 1 additions and 1 deletions

View File

@ -335,8 +335,8 @@ definegame : TYPE_DEFINE_GAME '{'
} }
game_definitions '}' game_definitions '}'
{ {
ncnf++;
num_games = ncnf; num_games = ncnf;
ncnf++;
} }
; ;