OSystem changes: removed create_thread() method (not needed anymore; 'pure' threads aren't very portable anyway, better we only use timers); introduced OSystem::TimerProc type
svn-id: r10430
This commit is contained in:
parent
e19e7c879a
commit
49d2a22b42
18 changed files with 47 additions and 168 deletions
|
@ -40,9 +40,8 @@ public:
|
|||
void set_shake_pos(int shake_pos) {}
|
||||
uint32 get_msecs();
|
||||
void delay_msecs(uint msecs);
|
||||
void create_thread(ThreadProc *proc, void *param) { }
|
||||
bool poll_event(Event *event) { return false; }
|
||||
bool set_sound_proc(SoundProc *proc, void *param, SoundFormat format) {}
|
||||
bool set_sound_proc(SoundProc proc, void *param, SoundFormat format) {}
|
||||
void quit() { exit(1); }
|
||||
uint32 property(int param, Property *value) { return 0; }
|
||||
static OSystem *create(int gfx_mode, bool full_screen);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue