diff options
author | Denis Kasak | 2009-06-25 17:56:14 +0000 |
---|---|---|
committer | Denis Kasak | 2009-06-25 17:56:14 +0000 |
commit | 09313ccebb93ae38141cbe39d19a4556417bd9d4 (patch) | |
tree | 01a34539677e38ce1d4c140fe8eebbaefeaad3fb | |
parent | a1b02870d898bc24dcd3776ecb0bee00791b4cd9 (diff) | |
download | scummvm-rg350-09313ccebb93ae38141cbe39d19a4556417bd9d4.tar.gz scummvm-rg350-09313ccebb93ae38141cbe39d19a4556417bd9d4.tar.bz2 scummvm-rg350-09313ccebb93ae38141cbe39d19a4556417bd9d4.zip |
Fixed typo.
svn-id: r41873
-rw-r--r-- | engines/draci/mouse.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/draci/mouse.cpp b/engines/draci/mouse.cpp index c1a4e7bc21..24a53141f5 100644 --- a/engines/draci/mouse.cpp +++ b/engines/draci/mouse.cpp @@ -48,7 +48,7 @@ void Mouse::handleEvent(Common::Event event) { _lButton = true; break; case Common::EVENT_LBUTTONUP: - debugC(6, kDraciGeneralDebugLevel, "Left up down (x: %u y: %u)", _x, _y); + debugC(6, kDraciGeneralDebugLevel, "Left button down (x: %u y: %u)", _x, _y); _lButton = false; break; case Common::EVENT_RBUTTONDOWN: |