mirror of https://github.com/OpenTTD/OpenTTD
(svn r5761) - Cleanup: Really minor whitespace changes, and remove an extern from a function decleration in header file.
parent
9e69df03a7
commit
bca8e9ad4e
1
fileio.c
1
fileio.c
|
@ -68,7 +68,6 @@ void FioSkipBytes(int n)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
uint16 FioReadWord(void)
|
uint16 FioReadWord(void)
|
||||||
{
|
{
|
||||||
byte b = FioReadByte();
|
byte b = FioReadByte();
|
||||||
|
|
2
hal.h
2
hal.h
|
@ -42,7 +42,7 @@ enum DriverType {
|
||||||
MUSIC_DRIVER = 2,
|
MUSIC_DRIVER = 2,
|
||||||
};
|
};
|
||||||
|
|
||||||
extern void GameLoop(void);
|
void GameLoop(void);
|
||||||
|
|
||||||
|
|
||||||
// Deals with finding savegames
|
// Deals with finding savegames
|
||||||
|
|
|
@ -31,7 +31,6 @@
|
||||||
static bool _fios_path_changed;
|
static bool _fios_path_changed;
|
||||||
static bool _savegame_sort_dirty;
|
static bool _savegame_sort_dirty;
|
||||||
|
|
||||||
|
|
||||||
typedef struct LandInfoData {
|
typedef struct LandInfoData {
|
||||||
Town *town;
|
Town *town;
|
||||||
int32 costclear;
|
int32 costclear;
|
||||||
|
|
Loading…
Reference in New Issue