mirror of
https://github.com/libretro/scummvm.git
synced 2025-01-19 08:25:35 +00:00
Removed more obsolete TODO messages.
svn-id: r41956
This commit is contained in:
parent
c2d13aab2a
commit
fbefe917f2
@ -87,7 +87,6 @@ int KyraEngine_LoK::buttonInventoryCallback(Button *caller) {
|
||||
}
|
||||
}
|
||||
_screen->updateScreen();
|
||||
// XXX clearKyrandiaButtonIO
|
||||
return 0;
|
||||
}
|
||||
|
||||
@ -183,7 +182,6 @@ int KyraEngine_LoK::buttonAmuletCallback(Button *caller) {
|
||||
break;
|
||||
}
|
||||
_unkAmuletVar = 0;
|
||||
// XXX clearKyrandiaButtonIO (!used before every return in this function!)
|
||||
return 1;
|
||||
}
|
||||
|
||||
|
@ -643,8 +643,6 @@ bool KyraEngine_HoF::handleInputUnkSub(int x, int y) {
|
||||
while (_emc->isValid(&_sceneScriptState))
|
||||
_emc->run(&_sceneScriptState);
|
||||
|
||||
//XXXsys_unkKeyboad (flush? wait? whatever...)
|
||||
|
||||
if (queryGameFlag(0x1ED)) {
|
||||
_sound->beginFadeOut();
|
||||
_screen->fadeToBlack();
|
||||
|
@ -113,7 +113,6 @@ public:
|
||||
KyraEngine_LoK(OSystem *system, const GameFlags &flags);
|
||||
~KyraEngine_LoK();
|
||||
|
||||
//TODO: proper extended implementation of KyraEngine_v1::pauseEngineIntern.
|
||||
// _sprites and _seqplayer should be paused here too, to avoid some animation glitches,
|
||||
// also parts of the hardcoded Malcolm fight might need some special handling.
|
||||
|
||||
|
@ -50,7 +50,6 @@ public:
|
||||
KyraEngine_MR(OSystem *system, const GameFlags &flags);
|
||||
~KyraEngine_MR();
|
||||
|
||||
//TODO: proper extended implementation of KyraEngine_v2::pauseEngineIntern.
|
||||
// Idle animation time, item animations and album animations should be taken
|
||||
// care of, but since those would just produce minor glitches it's not that
|
||||
// important.
|
||||
|
@ -381,14 +381,11 @@ int KyraEngine_MR::o3_checkInRect(EMCState *script) {
|
||||
y += desc[1];
|
||||
}
|
||||
|
||||
if (x >= x1 && x <= x2 && y >= y1 && y <= y2) {
|
||||
//XXX
|
||||
if (x >= x1 && x <= x2 && y >= y1 && y <= y2)
|
||||
return 1;
|
||||
} else {
|
||||
//XXX
|
||||
else
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
|
||||
int KyraEngine_MR::o3_updateConversations(EMCState *script) {
|
||||
debugC(3, kDebugLevelScriptFuncs, "KyraEngine_MR::o3_updateConversations(%p) (%d)", (const void *)script, stackPos(0));
|
||||
|
@ -311,10 +311,8 @@ void MidiOutput::sendSysEx(const byte p1, const byte p2, const byte p3, const by
|
||||
}
|
||||
|
||||
void MidiOutput::metaEvent(byte type, byte *data, uint16 length) {
|
||||
if (type == 0x2F) { // End of Track
|
||||
if (type == 0x2F) // End of Track
|
||||
deinitSource(_curSource);
|
||||
//XXX
|
||||
}
|
||||
|
||||
_output->metaEvent(type, data, length);
|
||||
}
|
||||
|
@ -39,9 +39,6 @@ void KyraEngine_LoK::waitForChatToFinish(int vocFile, int16 chatDuration, const
|
||||
uint8 currPage;
|
||||
Common::Event event;
|
||||
|
||||
//while (towns_isEscKeyPressed() )
|
||||
//towns_getKey();
|
||||
|
||||
uint32 timeToEnd = strlen(chatStr) * 8 * _tickLength + _system->getMillis();
|
||||
|
||||
if (textEnabled() && !speechEnabled() && chatDuration != -1) {
|
||||
@ -136,7 +133,6 @@ void KyraEngine_LoK::waitForChatToFinish(int vocFile, int16 chatDuration, const
|
||||
_timer->enable(15);
|
||||
_timer->enable(18);
|
||||
_timer->enable(19);
|
||||
//clearKyrandiaButtonIO();
|
||||
}
|
||||
|
||||
void KyraEngine_LoK::endCharacterChat(int8 charNum, int16 convoInitialized) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user