summaryrefslogtreecommitdiff
path: root/hal.h
diff options
context:
space:
mode:
authortron <tron@openttd.org>2005-07-29 16:40:29 +0000
committertron <tron@openttd.org>2005-07-29 16:40:29 +0000
commitf359d1a39470eae65f4a4069b347d8e60a639682 (patch)
treea1e843572836c42daea97f267db294b298f0de37 /hal.h
parent1a5de9ff9b7af53f9f8306c6a354aaa87779805d (diff)
downloadopenttd-f359d1a39470eae65f4a4069b347d8e60a639682.tar.xz
(svn r2748) Remove unused cruft from the main loop
Diffstat (limited to 'hal.h')
-rw-r--r--hal.h7
1 files changed, 1 insertions, 6 deletions
diff --git a/hal.h b/hal.h
index ba18f605e..1a426a93e 100644
--- a/hal.h
+++ b/hal.h
@@ -12,16 +12,11 @@ typedef struct {
const char *(*start)(const char * const *parm);
void (*stop)(void);
void (*make_dirty)(int left, int top, int width, int height);
- int (*main_loop)(void);
+ void (*main_loop)(void);
bool (*change_resolution)(int w, int h);
void (*toggle_fullscreen)(bool fullscreen);
} HalVideoDriver;
-enum {
- ML_QUIT = 0,
- ML_SWITCHDRIVER = 1,
-};
-
typedef struct {
const char *(*start)(const char * const *parm);
void (*stop)(void);