aboutsummaryrefslogtreecommitdiff
path: root/backends/PalmOS/Src/palm.cpp
diff options
context:
space:
mode:
authorMax Horn2004-03-15 01:18:47 +0000
committerMax Horn2004-03-15 01:18:47 +0000
commite8f7214acbfa67874b230edba9cdbc38288c6a7e (patch)
tree2320a25d223ada20cff51a00bfb54a8c2961d5cd /backends/PalmOS/Src/palm.cpp
parent08332ab559f45366e3c965990d7ecf7f6ebc8db7 (diff)
downloadscummvm-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/PalmOS/Src/palm.cpp')
-rw-r--r--backends/PalmOS/Src/palm.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/backends/PalmOS/Src/palm.cpp b/backends/PalmOS/Src/palm.cpp
index 1c4948ad9c..8bcbea07d8 100644
--- a/backends/PalmOS/Src/palm.cpp
+++ b/backends/PalmOS/Src/palm.cpp
@@ -739,7 +739,7 @@ void OSystem_PALMOS::delay_msecs(uint msecs) {
} while (current < last);
}
-void OSystem_PALMOS::set_timer(TimerProc callback, int timer) {
+void OSystem_PALMOS::setTimerCallback(TimerProc callback, int timer) {
if (callback != NULL) {
_timer.duration = timer;
_timer.nextExpiry = get_msecs() + timer;