diff options
author | Paul Gilbert | 2009-06-01 09:18:48 +0000 |
---|---|---|
committer | Paul Gilbert | 2009-06-01 09:18:48 +0000 |
commit | b81270fbc0a10da9f4c88dee5c208e745e49b565 (patch) | |
tree | 84fddd0b274e2ceda8ca7495bf0eea8532299d92 | |
parent | 2abbcd54a457dfabf17c6ef91a4b7f2faa3e81fd (diff) | |
download | scummvm-rg350-b81270fbc0a10da9f4c88dee5c208e745e49b565.tar.gz scummvm-rg350-b81270fbc0a10da9f4c88dee5c208e745e49b565.tar.bz2 scummvm-rg350-b81270fbc0a10da9f4c88dee5c208e745e49b565.zip |
Removed some out of date TODO's
svn-id: r41098
-rw-r--r-- | engines/cruise/function.cpp | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/engines/cruise/function.cpp b/engines/cruise/function.cpp index 6c8608b4fd..113e0c6b81 100644 --- a/engines/cruise/function.cpp +++ b/engines/cruise/function.cpp @@ -82,8 +82,7 @@ int16 Op_Exec(void) { int ovlIdx; uint8 *ptr; uint8 *ptr2; - - short int popTable[256]; // TODO: check original size; + int16 popTable[200]; int numOfArgToPop = popVar(); @@ -164,7 +163,7 @@ int16 Op_Narrator(void) { return (0); } -int16 Op_GetMouseX(void) { // TODO: implement properly +int16 Op_GetMouseX(void) { int16 dummy; int16 mouseX; int16 mouseY; @@ -175,7 +174,7 @@ int16 Op_GetMouseX(void) { // TODO: implement properly return (mouseX); } -int16 Op_GetMouseY(void) { // TODO: implement properly +int16 Op_GetMouseY(void) { int16 dummy; int16 mouseX; int16 mouseY; @@ -313,7 +312,7 @@ int16 Op_UnmergeBackgroundIncrust(void) { } int16 Op_FreePreload(void) { - // TODO: implement + // TODO: See if this is needed debug(1, "Op_FreePreload not implemented"); return (0); } |