Moved vers_id.h inclusion to where it is needed - patch by Kp

This commit is contained in:
zicodxx 2012-11-02 18:35:57 +01:00
parent 77b8100455
commit ba1dcead7c
4 changed files with 3 additions and 1 deletions

View file

@ -10,6 +10,7 @@ main/object.h: use struct type explicitly - patch by Kp
include/error.h: Renamed __format to __attribute_gcc_format due to possible C++ conflict; allow arguments - patch by Kp
include/console.h, main/console.c: Marked con_printf fmt as const, Increased console lines from 512 to 2048; Marked console private entries as static - patches by Kp
2d/font.c: Fixed test for font magic number; Consolidated grs_font_read() - patches by Kp
main/menu.c, main/multi.h, main/net_udp.c: Moved vers_id.h inclusion to where it is needed - patch by Kp
20121031
--------

View file

@ -66,6 +66,7 @@ COPYRIGHT 1993-1999 PARALLAX SOFTWARE CORPORATION. ALL RIGHTS RESERVED.
#include "powerup.h"
#include "strutil.h"
#include "multi.h"
#include "vers_id.h"
#ifdef USE_UDP
#include "net_udp.h"
#endif

View file

@ -23,7 +23,6 @@ COPYRIGHT 1993-1999 PARALLAX SOFTWARE CORPORATION. ALL RIGHTS RESERVED.
#include "gameseq.h"
#include "piggy.h"
#include "vers_id.h"
#include "newmenu.h"
#ifdef USE_UDP

View file

@ -54,6 +54,7 @@
#include "gamefont.h"
#include "rbaudio.h"
#include "config.h"
#include "vers_id.h"
// Prototypes
void net_udp_init();