aboutsummaryrefslogtreecommitdiff
path: root/sound/softsynth
diff options
context:
space:
mode:
authorMax Horn2005-05-10 23:17:38 +0000
committerMax Horn2005-05-10 23:17:38 +0000
commit72f4c03b0b9a6918a359b967ebc400a2701981d9 (patch)
tree6686cad5726244b7d9d3a4adddde8dea92ce7843 /sound/softsynth
parentb75c969e666b9f262a05e0d1e54d56f7d3e45441 (diff)
downloadscummvm-rg350-72f4c03b0b9a6918a359b967ebc400a2701981d9.tar.gz
scummvm-rg350-72f4c03b0b9a6918a359b967ebc400a2701981d9.tar.bz2
scummvm-rg350-72f4c03b0b9a6918a359b967ebc400a2701981d9.zip
Moved (In/Out)SaveFile(Manager) and Timer to namespace Common
svn-id: r18038
Diffstat (limited to 'sound/softsynth')
-rw-r--r--sound/softsynth/emumidi.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sound/softsynth/emumidi.h b/sound/softsynth/emumidi.h
index 160a4fa83b..19e2e86476 100644
--- a/sound/softsynth/emumidi.h
+++ b/sound/softsynth/emumidi.h
@@ -31,7 +31,7 @@ protected:
SoundMixer *_mixer;
private:
- Timer::TimerProc _timerProc;
+ Common::Timer::TimerProc _timerProc;
void *_timerParam;
int _nextTick;
@@ -69,7 +69,7 @@ public:
return 0;
}
- void setTimerCallback(void *timer_param, Timer::TimerProc timer_proc) {
+ void setTimerCallback(void *timer_param, Common::Timer::TimerProc timer_proc) {
_timerProc = timer_proc;
_timerParam = timer_param;
}