aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMax Horn2007-02-18 18:35:11 +0000
committerMax Horn2007-02-18 18:35:11 +0000
commit3611cc6b4c6d877cf55316cd66008aa82e2956f7 (patch)
treeced40c17bfa9a9c5fb0e51e8731684fb2cab7843
parent94507bb44dc38bfaffc5a293f1160f35f56dd9b7 (diff)
downloadscummvm-rg350-3611cc6b4c6d877cf55316cd66008aa82e2956f7.tar.gz
scummvm-rg350-3611cc6b4c6d877cf55316cd66008aa82e2956f7.tar.bz2
scummvm-rg350-3611cc6b4c6d877cf55316cd66008aa82e2956f7.zip
Fixed warning
svn-id: r25698
-rw-r--r--gui/massadd.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/gui/massadd.cpp b/gui/massadd.cpp
index 10b72b2639..25a0848378 100644
--- a/gui/massadd.cpp
+++ b/gui/massadd.cpp
@@ -176,7 +176,7 @@ void MassAddDialog::handleTickle() {
// Enable the OK button
_okButton->setEnabled(true);
- snprintf(buf, sizeof(buf), "Scan complete!", _dirsScanned);
+ snprintf(buf, sizeof(buf), "Scan complete!");
_dirProgressText->setLabel(buf);
snprintf(buf, sizeof(buf), "Discovered %d games.", _games.size());