diff options
author | Tarek Soliman | 2012-02-04 20:45:05 -0600 |
---|---|---|
committer | Tarek Soliman | 2012-02-04 20:47:12 -0600 |
commit | 07f1d33ef7fea990b851d1e35fcc553380f368e2 (patch) | |
tree | 4810cf0c1e8ab31d0ea89231d2d28cc6322b2f3a /backends/keymapper | |
parent | 27360d20717ae3302f68dc7a171f29624e4c9e11 (diff) | |
download | scummvm-rg350-07f1d33ef7fea990b851d1e35fcc553380f368e2.tar.gz scummvm-rg350-07f1d33ef7fea990b851d1e35fcc553380f368e2.tar.bz2 scummvm-rg350-07f1d33ef7fea990b851d1e35fcc553380f368e2.zip |
KEYMAPPER: Fix annoying debug message
Diffstat (limited to 'backends/keymapper')
-rw-r--r-- | backends/keymapper/remap-dialog.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/backends/keymapper/remap-dialog.cpp b/backends/keymapper/remap-dialog.cpp index 5c339f8c27..445ed67e8a 100644 --- a/backends/keymapper/remap-dialog.cpp +++ b/backends/keymapper/remap-dialog.cpp @@ -149,7 +149,7 @@ void RemapDialog::reflowLayout() { int labelWidth = colWidth - (keyButtonWidth + spacing + clearButtonWidth + spacing); _rowCount = (areaH + spacing) / (buttonHeight + spacing); - debug("rowCount = %d" , _rowCount); + debug(7, "rowCount = %d" , _rowCount); if (colWidth <= 0 || _rowCount <= 0) error("Remap dialog too small to display any keymaps"); |