1
0
Fork 0
flightgear/Main/runfg.bat.in
curt 58eb9b9089 Added "D" key binding to set autopilot heading.
Made frame rate calculation average out over last 10 frames.
Borland C++ floating point exception workaround.
Added a --tile-radius=n option.
1998-05-07 23:14:14 +00:00

23 lines
430 B
Batchfile
Executable file

REM @ECHO OFF
REM Skip ahead to CONT1 if FG_ROOT has a value
IF NOT %FG_ROOT%.==. GOTO CONT1
SET FG_ROOT=.
:CONT1
REM Check for the existance of the executable
IF NOT EXIST %FG_ROOT%\BIN\FG.EXE GOTO ERROR1
REM Now that FG_ROOT has been set, run the program
ECHO FG_ROOT = %FG_ROOT%
%FG_ROOT%\BIN\FG.EXE %1 %2 %3 %4 %5 %6 %7 %8 %9
GOTO END
:ERROR1
ECHO Cannot find %FG_ROOT%\BIN\FG.EXE
GOTO END
:END