Rename reInit() method to 'resetSimulator', and document that it's hooked up to the 'reset' command.
This commit is contained in:
parent
d279c394d7
commit
18d42ec1af
4 changed files with 7 additions and 3 deletions
|
@ -55,7 +55,6 @@ extern fntTexFont *guiFntHandle;
|
|||
extern int gui_menu_on;
|
||||
|
||||
// from gui_funcs.cxx
|
||||
extern void reInit(void);
|
||||
extern void fgDumpSnapShotWrapper();
|
||||
#ifdef TR_HIRES_SNAP
|
||||
extern void fgHiResDumpWrapper();
|
||||
|
|
|
@ -223,7 +223,7 @@ do_exit (const SGPropertyNode * arg)
|
|||
static bool
|
||||
do_reset (const SGPropertyNode * arg)
|
||||
{
|
||||
reInit();
|
||||
doSimulatorReset();
|
||||
return true;
|
||||
}
|
||||
|
||||
|
|
|
@ -1652,7 +1652,7 @@ void fgReInitSubsystems()
|
|||
}
|
||||
|
||||
|
||||
void reInit(void) // from gui_local.cxx -- TODO merge with fgReInitSubsystems()
|
||||
void doSimulatorReset(void) // from gui_local.cxx -- TODO merge with fgReInitSubsystems()
|
||||
{
|
||||
static SGPropertyNode_ptr master_freeze = fgGetNode("/sim/freeze/master", true);
|
||||
|
||||
|
|
|
@ -65,6 +65,11 @@ bool fgInitSubsystems();
|
|||
// Reset
|
||||
void fgReInitSubsystems();
|
||||
|
||||
/**
|
||||
* this is what the 'reset' command (and hence, GUI) is attached too
|
||||
* it overlaps with fgReInitSubsystems quite substantially
|
||||
*/
|
||||
void doSimulatorReset(void);
|
||||
|
||||
// Set the initial position based on presets (or defaults)
|
||||
bool fgInitPosition();
|
||||
|
|
Loading…
Reference in a new issue