aboutsummaryrefslogtreecommitdiff
path: root/engines/macventure/dialog.cpp
diff options
context:
space:
mode:
authorBorja Lorente2016-08-16 12:14:20 +0200
committerBorja Lorente2016-08-19 16:30:24 +0200
commit34fdec37b26c7328f07f6251263f1c1afc7d1629 (patch)
treeb01e2602bd2121d1dd15ebc2427123acf65cbcef /engines/macventure/dialog.cpp
parentf928deebaf09e9498da9658f36bf318d67660733 (diff)
downloadscummvm-rg350-34fdec37b26c7328f07f6251263f1c1afc7d1629.tar.gz
scummvm-rg350-34fdec37b26c7328f07f6251263f1c1afc7d1629.tar.bz2
scummvm-rg350-34fdec37b26c7328f07f6251263f1c1afc7d1629.zip
MACVENTURE: Fix debug messages
Diffstat (limited to 'engines/macventure/dialog.cpp')
-rw-r--r--engines/macventure/dialog.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/macventure/dialog.cpp b/engines/macventure/dialog.cpp
index 043cd38a92..27ef224712 100644
--- a/engines/macventure/dialog.cpp
+++ b/engines/macventure/dialog.cpp
@@ -176,7 +176,7 @@ bool DialogButton::doProcessEvent(MacVenture::Dialog *dialog, Common::Event even
if (event.type == Common::EVENT_LBUTTONDOWN) {
dialog->localize(mouse);
if (_bounds.contains(mouse)) {
- debugC(1, kMVDebugGUI, "Click! Button: %s", _text.c_str());
+ debugC(2, kMVDebugGUI, "Click! Button: %s", _text.c_str());
dialog->handleDialogAction(this, _action);
return true;
}