diff options
author | Darkvater <Darkvater@openttd.org> | 2006-08-04 23:33:05 +0000 |
---|---|---|
committer | Darkvater <Darkvater@openttd.org> | 2006-08-04 23:33:05 +0000 |
commit | 19953136196cd094fab641562e3739bfe1b2cd52 (patch) | |
tree | f825341253cc3ebeac65e1de4dd99010ebb237a1 | |
parent | 2693673bf3d753bbed194f2881c732a133b56614 (diff) | |
download | openttd-19953136196cd094fab641562e3739bfe1b2cd52.tar.xz |
(svn r5761) - Cleanup: Really minor whitespace changes, and remove an extern from a function decleration in header file.
-rw-r--r-- | fileio.c | 1 | ||||
-rw-r--r-- | hal.h | 2 | ||||
-rw-r--r-- | misc_gui.c | 1 | ||||
-rw-r--r-- | os2.c | 1 |
4 files changed, 1 insertions, 4 deletions
@@ -68,7 +68,6 @@ void FioSkipBytes(int n) } } - uint16 FioReadWord(void) { byte b = FioReadByte(); @@ -42,7 +42,7 @@ enum DriverType { MUSIC_DRIVER = 2, }; -extern void GameLoop(void); +void GameLoop(void); // Deals with finding savegames diff --git a/misc_gui.c b/misc_gui.c index de3b048a8..8e44261fb 100644 --- a/misc_gui.c +++ b/misc_gui.c @@ -31,7 +31,6 @@ static bool _fios_path_changed; static bool _savegame_sort_dirty; - typedef struct LandInfoData { Town *town; int32 costclear; @@ -22,7 +22,6 @@ #define INCL_WINCLIPBOARD #include <os2.h> - #include <i86.h> static char *_fios_path; |