aboutsummaryrefslogtreecommitdiff
path: root/engines/sci/engine
diff options
context:
space:
mode:
authorMartin Kiewitz2010-07-14 09:04:41 +0000
committerMartin Kiewitz2010-07-14 09:04:41 +0000
commit1ec55288c6bd9f037799446c897240f0b5b88973 (patch)
tree26ae32784e23ed7cdb967915ce5e8882d50d539b /engines/sci/engine
parent646ea5828c091ef59c0c97f2cfdc02a67aa99f95 (diff)
downloadscummvm-rg350-1ec55288c6bd9f037799446c897240f0b5b88973.tar.gz
scummvm-rg350-1ec55288c6bd9f037799446c897240f0b5b88973.tar.bz2
scummvm-rg350-1ec55288c6bd9f037799446c897240f0b5b88973.zip
SCI: replacing fixme with todo
svn-id: r50875
Diffstat (limited to 'engines/sci/engine')
-rw-r--r--engines/sci/engine/kernel.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/sci/engine/kernel.cpp b/engines/sci/engine/kernel.cpp
index 1be3a63a8f..edb3799b70 100644
--- a/engines/sci/engine/kernel.cpp
+++ b/engines/sci/engine/kernel.cpp
@@ -342,7 +342,7 @@ static const SciKernelMapSubEntry kDoSound_subops[] = {
{ SIG_SOUNDSCI1EARLY, 5, MAP_CALL(DoSoundInit), NULL, NULL },
{ SIG_SOUNDSCI1EARLY, 6, MAP_CALL(DoSoundDispose), NULL, NULL },
{ SIG_SOUNDSCI1EARLY, 7, MAP_CALL(DoSoundPlay), "oi", NULL },
- // ^^ FIXME: In SCI1-SCI1.1 DoSound (play) is called by 2 methods of the Sound object: play and
+ // ^^ TODO: In SCI1-SCI1.1 DoSound (play) is called by 2 methods of the Sound object: play and
// playBed. The methods are the same, apart from the second integer parameter: it's 0 in
// play and 1 in playBed, to distinguish the caller. It's passed on, we should find out what
// it actually does internally