aboutsummaryrefslogtreecommitdiff
path: root/engines
diff options
context:
space:
mode:
authorMax Horn2007-02-11 22:40:32 +0000
committerMax Horn2007-02-11 22:40:32 +0000
commitccd6417f88c82bdd0b296b5f7712712c4eceba19 (patch)
tree9addfc617a9cee5513a76ea7d215f7112ae9eec0 /engines
parent856742075ed8846199bc42c06427960d28694a25 (diff)
downloadscummvm-rg350-ccd6417f88c82bdd0b296b5f7712712c4eceba19.tar.gz
scummvm-rg350-ccd6417f88c82bdd0b296b5f7712712c4eceba19.tar.bz2
scummvm-rg350-ccd6417f88c82bdd0b296b5f7712712c4eceba19.zip
Fix warnings
svn-id: r25498
Diffstat (limited to 'engines')
-rw-r--r--engines/parallaction/loadsave.cpp6
1 files changed, 1 insertions, 5 deletions
diff --git a/engines/parallaction/loadsave.cpp b/engines/parallaction/loadsave.cpp
index b515d59445..c461e4e88c 100644
--- a/engines/parallaction/loadsave.cpp
+++ b/engines/parallaction/loadsave.cpp
@@ -721,7 +721,7 @@ int Parallaction::selectSaveFile(uint16 arg_0) {
Common::StringList l;
- int count = buildSaveFileList(l);
+ /*int count = */ buildSaveFileList(l);
slc->setList(l);
int idx = slc->runModal();
@@ -735,8 +735,6 @@ int Parallaction::selectSaveFile(uint16 arg_0) {
void Parallaction::loadGame() {
- char buf[32];
-
int _di = selectSaveFile( 0 );
if (_di == -1) {
return;
@@ -759,8 +757,6 @@ void Parallaction::saveGame() {
if (!scumm_stricmp(_location, "caveau")) return;
- char buf[32];
-
int slot = selectSaveFile( 1 );
if (slot == -1) {
return;