aboutsummaryrefslogtreecommitdiff
path: root/tfmx
diff options
context:
space:
mode:
Diffstat (limited to 'tfmx')
-rw-r--r--tfmx/tfmxplayer.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/tfmx/tfmxplayer.cpp b/tfmx/tfmxplayer.cpp
index 1e2b905abb..10040148e5 100644
--- a/tfmx/tfmxplayer.cpp
+++ b/tfmx/tfmxplayer.cpp
@@ -109,9 +109,9 @@ void tfmxmain(const int argc, const char *const argv[]) {
if (i < argc) {
param = atoi(argv[i]);
debug( "play Macro %02X", param);
- dumpMacro(*player, 0x11);
+ dumpMacro(*player, param);
playflag = 1;
- player->doMacro(param,0x1B);
+ player->doMacro(param,param);
++i;
}
break;
@@ -143,7 +143,7 @@ void tfmxmain(const int argc, const char *const argv[]) {
while( true)
player->readBuffer(buf, ARRAYSIZE(buf));
#endif
- int maxsecs = 60;
+ int maxsecs = 2 * 60;
if (playflag == 1) {
// get Mixer, assume this never fails
Audio::Mixer *mixer = g_system->getMixer();