added some doxygen comments to common/system.h; cleaned up the OSystem interface a bit
svn-id: r8116
This commit is contained in:
parent
417ec3a588
commit
f0a9f4fb2c
18 changed files with 179 additions and 87 deletions
|
@ -496,8 +496,8 @@ void OSystem_SDL_Common::delay_msecs(uint msecs) {
|
|||
SDL_Delay(msecs);
|
||||
}
|
||||
|
||||
void *OSystem_SDL_Common::create_thread(ThreadProc *proc, void *param) {
|
||||
return SDL_CreateThread(proc, param);
|
||||
void OSystem_SDL_Common::create_thread(ThreadProc *proc, void *param) {
|
||||
SDL_CreateThread(proc, param);
|
||||
}
|
||||
|
||||
static int mapKey(SDLKey key, SDLMod mod, Uint16 unicode)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue