aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVladimir2011-06-09 10:32:40 +0400
committerAlyssa Milburn2011-06-15 17:33:45 +0200
commit66ee7b20f5d72a981b44ebf083a5e1280a61399e (patch)
tree0b7f724805f6a25ff5c8102588ef3fe09f89f1b9
parentfce91bd196d6c1d17fb56b4a983b219a55fde045 (diff)
downloadscummvm-rg350-66ee7b20f5d72a981b44ebf083a5e1280a61399e.tar.gz
scummvm-rg350-66ee7b20f5d72a981b44ebf083a5e1280a61399e.tar.bz2
scummvm-rg350-66ee7b20f5d72a981b44ebf083a5e1280a61399e.zip
DREAMWEB: removed noisy palette log
-rw-r--r--engines/dreamweb/dreamweb.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/engines/dreamweb/dreamweb.cpp b/engines/dreamweb/dreamweb.cpp
index 28dea96f9f..e88898bb43 100644
--- a/engines/dreamweb/dreamweb.cpp
+++ b/engines/dreamweb/dreamweb.cpp
@@ -470,15 +470,14 @@ void mode640x480(Context &context) {
void showgroup(Context &context) {
debug(1, "setting palette entries %u, %u colors, ds: %04x", (uint8)context.al, (uint16)context.cx, (uint16)context.ds);
- unsigned idx = context.al;
- while(context.cx--) {
+ for(unsigned idx = context.al; context.cx--; ++idx) {
context._lodsb();
unsigned r = context.al;
context._lodsb();
unsigned g = context.al;
context._lodsb();
unsigned b = context.al;
- debug(1, "%u -> %u,%u,%u", idx, r, g, b);
+ //debug(1, "%u -> (%u,%u,%u)", idx, r, g, b);
}
}