- missing status bar initialisation added in bx_dbg_main()

This commit is contained in:
Volker Ruppert 2004-11-01 12:53:45 +00:00
parent 40015e6301
commit 20d5fc0155

View File

@ -1,5 +1,5 @@
///////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////
// $Id: dbg_main.cc,v 1.10 2004-09-19 18:38:09 vruppert Exp $ // $Id: dbg_main.cc,v 1.11 2004-11-01 12:53:45 vruppert Exp $
///////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////
// //
// Copyright (C) 2001 MandrakeSoft S.A. // Copyright (C) 2001 MandrakeSoft S.A.
@ -410,14 +410,15 @@ process_sim2:
// (mch) Moved from main.cc // (mch) Moved from main.cc
DEV_init_devices(); DEV_init_devices();
DEV_reset_devices(BX_RESET_HARDWARE); DEV_reset_devices(BX_RESET_HARDWARE);
bx_gui->init_signal_handlers ();
bx_pc_system.start_timers();
SIM->set_init_done (1); SIM->set_init_done (1);
// update headerbar buttons since drive status can change during init // update headerbar buttons since drive status can change during init
bx_gui->update_drive_status_buttons (); bx_gui->update_drive_status_buttons ();
// iniialize statusbar and set all items inactive
bx_gui->statusbar_setitem(-1, 0);
bx_gui->init_signal_handlers ();
bx_pc_system.start_timers();
// create a boolean parameter that will tell if the simulation is // create a boolean parameter that will tell if the simulation is
// running (continue command) or waiting for user response. This affects // running (continue command) or waiting for user response. This affects