diff options
| author | Max Horn | 2004-03-15 01:18:47 +0000 | 
|---|---|---|
| committer | Max Horn | 2004-03-15 01:18:47 +0000 | 
| commit | e8f7214acbfa67874b230edba9cdbc38288c6a7e (patch) | |
| tree | 2320a25d223ada20cff51a00bfb54a8c2961d5cd /backends/sdl | |
| parent | 08332ab559f45366e3c965990d7ecf7f6ebc8db7 (diff) | |
| download | scummvm-rg350-e8f7214acbfa67874b230edba9cdbc38288c6a7e.tar.gz scummvm-rg350-e8f7214acbfa67874b230edba9cdbc38288c6a7e.tar.bz2 scummvm-rg350-e8f7214acbfa67874b230edba9cdbc38288c6a7e.zip | |
Renamed OSystem::set_timer() to setTimerCallback(); more OSystem Doxygen changes
svn-id: r13289
Diffstat (limited to 'backends/sdl')
| -rw-r--r-- | backends/sdl/sdl-common.h | 2 | ||||
| -rw-r--r-- | backends/sdl/sdl.cpp | 2 | 
2 files changed, 2 insertions, 2 deletions
| diff --git a/backends/sdl/sdl-common.h b/backends/sdl/sdl-common.h index 18ad04aabf..c71e147956 100644 --- a/backends/sdl/sdl-common.h +++ b/backends/sdl/sdl-common.h @@ -102,7 +102,7 @@ public:  	// Add a callback timer -	void set_timer(TimerProc callback, int timer); +	void setTimerCallback(TimerProc callback, int timer);  	// Mutex handling  	MutexRef createMutex(); diff --git a/backends/sdl/sdl.cpp b/backends/sdl/sdl.cpp index e87c661c1b..783238f802 100644 --- a/backends/sdl/sdl.cpp +++ b/backends/sdl/sdl.cpp @@ -122,7 +122,7 @@ void OSystem_SDL::delay_msecs(uint msecs) {  	SDL_Delay(msecs);  } -void OSystem_SDL::set_timer(TimerProc callback, int timer) { +void OSystem_SDL::setTimerCallback(TimerProc callback, int timer) {  	SDL_SetTimer(timer, (SDL_TimerCallback) callback);  } | 
