]> git.mxchange.org Git - flightgear.git/blobdiff - src/Main/fg_commands.cxx
Use a pointer to a structure instead of a large number of variables when calling...
[flightgear.git] / src / Main / fg_commands.cxx
index 2e20d8830846f3e06a17f79fc552a3dc3d92fa66..d540faf4050ef75cffae49ea0e52612392a8d639 100644 (file)
@@ -829,9 +829,7 @@ static bool
 do_replay (const SGPropertyNode * arg)
 {
     // freeze the master fdm
-    fgSetBool( "/sim/freeze/master", true );
-    fgSetBool( "/sim/freeze/clock", true );
-    fgSetBool( "/sim/replay/master", true );
+    fgSetBool( "/sim/freeze/replay", true );
 
     FGReplay *r = (FGReplay *)(globals->get_subsystem( "replay" ));