[Scummvm-git-logs] scummvm master -> c873f0e94a6a9f1f35b7aaf6bf3f707eafca81df
eriktorbjorn
eriktorbjorn at telia.com
Mon Nov 23 12:17:46 UTC 2020
This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .
Summary:
c873f0e94a BLADERUNNER: Fix debugPrintf() in cmdMusic()
Commit: c873f0e94a6a9f1f35b7aaf6bf3f707eafca81df
https://github.com/scummvm/scummvm/commit/c873f0e94a6a9f1f35b7aaf6bf3f707eafca81df
Author: Torbjörn Andersson (eriktorbjorn at users.sourceforge.net)
Date: 2020-11-23T13:16:22+01:00
Commit Message:
BLADERUNNER: Fix debugPrintf() in cmdMusic()
Changed paths:
engines/bladerunner/debugger.cpp
diff --git a/engines/bladerunner/debugger.cpp b/engines/bladerunner/debugger.cpp
index 9436b7dbc9..c202ddba50 100644
--- a/engines/bladerunner/debugger.cpp
+++ b/engines/bladerunner/debugger.cpp
@@ -629,7 +629,7 @@ bool Debugger::cmdMusic(int argc, const char** argv) {
if (argc != 2) {
debugPrintf("Play the specified music track, list the available tracks\nor stop the current playing track.\n");
debugPrintf("Usage: %s (list|stop|<musicId>)\n", argv[0]);
- debugPrintf("musicId can be in [0, %d]\n", argv[0], (int)_vm->_gameInfo->getMusicTrackCount() - 1);
+ debugPrintf("musicId can be in [0, %d]\n", (int)_vm->_gameInfo->getMusicTrackCount() - 1);
return true;
}
More information about the Scummvm-git-logs
mailing list