aboutsummaryrefslogtreecommitdiff
path: root/engines/voyeur/events.cpp
diff options
context:
space:
mode:
authorPaul Gilbert2014-02-03 20:16:13 -0500
committerPaul Gilbert2014-02-03 20:16:13 -0500
commitae9bca6bdf747e8ec1daa75b043a5a546eec21f7 (patch)
tree4b4a5a8ee5feb00c13a4db600dbe59bbdc68d7d4 /engines/voyeur/events.cpp
parent8385a0ef8e77903d48f0ff443d3a5feb8536c2fa (diff)
downloadscummvm-rg350-ae9bca6bdf747e8ec1daa75b043a5a546eec21f7.tar.gz
scummvm-rg350-ae9bca6bdf747e8ec1daa75b043a5a546eec21f7.tar.bz2
scummvm-rg350-ae9bca6bdf747e8ec1daa75b043a5a546eec21f7.zip
VOYEUR: Remove a lot of outdated TODO's and clean up of stubbed methods
Diffstat (limited to 'engines/voyeur/events.cpp')
-rw-r--r--engines/voyeur/events.cpp3
1 files changed, 0 insertions, 3 deletions
diff --git a/engines/voyeur/events.cpp b/engines/voyeur/events.cpp
index 9904c9ecc8..c0f0eb5c68 100644
--- a/engines/voyeur/events.cpp
+++ b/engines/voyeur/events.cpp
@@ -458,8 +458,6 @@ void EventsManager::vDoCycleInt() {
byte g = pPal[start * 3 + 1];
byte b = pPal[start * 3 + 2];
- // Move the remainder of the range backwards one entry
- // TODO: Is this allowing for overlap properly?
Common::copy(&pPal[start * 3 + 3], &pPal[end * 3 + 3], &pPal[start * 3]);
// Place the original saved entry at the end of the range
@@ -483,7 +481,6 @@ void EventsManager::vDoCycleInt() {
byte b = pPal[end * 3 + 2];
// Move the remainder of the range forwards one entry
- // TODO: Does this allow for overlap range correctly?
Common::copy_backward(&pPal[start * 3], &pPal[end * 3], &pPal[end * 3 + 3]);
// Place the original saved entry at the end of the range