mirror of
https://github.com/OpenTTD/OpenTTD.git
synced 2025-08-18 20:19:11 +00:00
(svn r1594) Convert all undefined parameter lists to (void) and add the appropriate warning flags in the Makefile
This commit is contained in:
@@ -525,7 +525,7 @@ typedef struct LoadSavegameState {
|
||||
|
||||
static LoadSavegameState *_cur_state;
|
||||
|
||||
static byte GetSavegameByteFromBuffer()
|
||||
static byte GetSavegameByteFromBuffer(void)
|
||||
{
|
||||
LoadSavegameState *lss = _cur_state;
|
||||
|
||||
@@ -544,7 +544,7 @@ static byte GetSavegameByteFromBuffer()
|
||||
return *lss->buffer_cur++;
|
||||
}
|
||||
|
||||
static byte DecodeSavegameByte()
|
||||
static byte DecodeSavegameByte(void)
|
||||
{
|
||||
LoadSavegameState *lss = _cur_state;
|
||||
int8 x;
|
||||
|
Reference in New Issue
Block a user