diff options
author | Thierry Crozat | 2016-12-08 22:34:59 +0000 |
---|---|---|
committer | Thierry Crozat | 2016-12-08 22:44:07 +0000 |
commit | b0588526e865ebe91997b181e2998bdd2b85e273 (patch) | |
tree | e196e4047ea2d9bc373b9d0ece932be5d8ba6495 /engines/drascula | |
parent | 91c463131050eadb5a8053e1fbad1020c1c848a2 (diff) | |
download | scummvm-rg350-b0588526e865ebe91997b181e2998bdd2b85e273.tar.gz scummvm-rg350-b0588526e865ebe91997b181e2998bdd2b85e273.tar.bz2 scummvm-rg350-b0588526e865ebe91997b181e2998bdd2b85e273.zip |
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.
Diffstat (limited to 'engines/drascula')
-rw-r--r-- | engines/drascula/graphics.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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 |