From b0588526e865ebe91997b181e2998bdd2b85e273 Mon Sep 17 00:00:00 2001 From: Thierry Crozat Date: Thu, 8 Dec 2016 22:34:59 +0000 Subject: DRASCULA: Increase debug level for copyBackground This function is called a lot, and having a debug level of 1 made it very difficult to find any other debug prints. --- engines/drascula/graphics.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engines/drascula/graphics.cpp b/engines/drascula/graphics.cpp index 8634b6c586..09ff3c6429 100644 --- a/engines/drascula/graphics.cpp +++ b/engines/drascula/graphics.cpp @@ -154,7 +154,7 @@ void DrasculaEngine::showFrame(Common::SeekableReadStream *stream, bool firstFra } void DrasculaEngine::copyBackground(int xorg, int yorg, int xdes, int ydes, int width, int height, byte *src, byte *dest) { - debug(1, "DrasculaEngine::copyBackground(xorg:%d, yorg:%d, xdes:%d, ydes:%d width:%d height:%d, src, dest)", xorg, yorg, xdes, ydes, width,height); + debug(5, "DrasculaEngine::copyBackground(xorg:%d, yorg:%d, xdes:%d, ydes:%d width:%d height:%d, src, dest)", xorg, yorg, xdes, ydes, width,height); dest += xdes + ydes * 320; src += xorg + yorg * 320; /* Unoptimized code -- cgit v1.2.3