aboutsummaryrefslogtreecommitdiff
path: root/engines/cge/vga13h.cpp
diff options
context:
space:
mode:
authorStrangerke2011-07-20 14:22:56 +0200
committerStrangerke2011-07-20 14:22:56 +0200
commit420516b45e1822c249775c68f9c61b62aba5de0b (patch)
tree76833c00d53d4ed87b70fd121892710bd68d96a6 /engines/cge/vga13h.cpp
parent32890064585c75bb796417fa87170ebf611897fe (diff)
downloadscummvm-rg350-420516b45e1822c249775c68f9c61b62aba5de0b.tar.gz
scummvm-rg350-420516b45e1822c249775c68f9c61b62aba5de0b.tar.bz2
scummvm-rg350-420516b45e1822c249775c68f9c61b62aba5de0b.zip
CGE: Rename Debug channel constants
Diffstat (limited to 'engines/cge/vga13h.cpp')
-rw-r--r--engines/cge/vga13h.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/cge/vga13h.cpp b/engines/cge/vga13h.cpp
index 6fc17dc37b..6093681292 100644
--- a/engines/cge/vga13h.cpp
+++ b/engines/cge/vga13h.cpp
@@ -1213,7 +1213,7 @@ void Vga::copyPage(uint16 d, uint16 s) {
//--------------------------------------------------------------------------
void Bitmap::xShow(int16 x, int16 y) {
- debugC(4, kDebugBitmap, "Bitmap::xShow(%d, %d)", x, y);
+ debugC(4, kCGEDebugBitmap, "Bitmap::xShow(%d, %d)", x, y);
const byte *srcP = (const byte *)_v;
byte *destEndP = (byte *)Vga::_page[1]->pixels + (SCR_WID * SCR_HIG);
@@ -1266,7 +1266,7 @@ void Bitmap::xShow(int16 x, int16 y) {
void Bitmap::show(int16 x, int16 y) {
- debugC(5, kDebugBitmap, "Bitmap::show(%d, %d)", x, y);
+ debugC(5, kCGEDebugBitmap, "Bitmap::show(%d, %d)", x, y);
const byte *srcP = (const byte *)_v;
byte *destEndP = (byte *)Vga::_page[1]->pixels + (SCR_WID * SCR_HIG);
@@ -1330,7 +1330,7 @@ void Bitmap::show(int16 x, int16 y) {
void Bitmap::hide(int16 x, int16 y) {
- debugC(5, kDebugBitmap, "Bitmap::hide(%d, %d)", x, y);
+ debugC(5, kCGEDebugBitmap, "Bitmap::hide(%d, %d)", x, y);
for (int yp = y; yp < y + _h; yp++) {
const byte *srcP = (const byte *)Vga::_page[2]->getBasePtr(x, yp);