(svn r2748) Remove unused cruft from the main loop

This commit is contained in:
tron
2005-07-29 16:40:29 +00:00
parent d2a891db7e
commit 452f8fee2a
6 changed files with 13 additions and 24 deletions

7
hal.h
View File

@@ -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);