Fix subtitle output in FF

svn-id: r21659
This commit is contained in:
Travis Howell 2006-04-07 03:03:20 +00:00
parent 26587faff7
commit 50983a3721
4 changed files with 34 additions and 23 deletions

View file

@ -317,7 +317,7 @@ void SimonEngine::setupOpcodes() {
opcode_table[171] = &SimonEngine::o3_hyperLinkOn;
opcode_table[172] = &SimonEngine::o3_hyperLinkOff;
opcode_table[173] = &SimonEngine::o3_checkPaths;
opcode_table[181] = &SimonEngine::o2_mouseOff;
opcode_table[181] = &SimonEngine::o3_mouseOff;
opcode_table[182] = &SimonEngine::o3_loadSmack;
opcode_table[183] = &SimonEngine::o3_playSmack;
opcode_table[185] = NULL;
@ -1452,6 +1452,12 @@ void SimonEngine::o3_checkPaths(bool &cond, int &ret) {
warning("STUB: script opcode 173");
}
void SimonEngine::o3_mouseOff(bool &cond, int &ret) {
// 181: force mouseOff
o_mouseOff();
clearName();
}
void SimonEngine::o3_loadSmack(bool &cond, int &ret) {
// 182: load video file
debug(1,"Load video file: %s", getStringPtrByID(getNextStringID()));