From dec0e3764fe134bd23a6cae87e8321cf0f954cc3 Mon Sep 17 00:00:00 2001 From: Pasi Kallinen Date: Sun, 6 Jan 2008 10:13:29 +0000 Subject: [PATCH] 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 --- config.y | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.y b/config.y index 09e9446..e75e734 100644 --- a/config.y +++ b/config.y @@ -335,8 +335,8 @@ definegame : TYPE_DEFINE_GAME '{' } game_definitions '}' { - ncnf++; num_games = ncnf; + ncnf++; } ; -- 2.47.3