- Fix trivial conflict between revisions

git-svn-id: svn://svn.gna.org/svn/sgpemv2/trunk@433 3ecf2c5c-341e-0410-92b4-d18e462d057c
This commit is contained in:
tchernobog 2006-02-24 10:07:47 +00:00
parent edd8cc3e95
commit 6446c205ea
1 changed files with 2 additions and 6 deletions

View File

@ -28,7 +28,6 @@
#include "backend/schedulable_list.hh" #include "backend/schedulable_list.hh"
#include "backend/scheduler.hh" #include "backend/scheduler.hh"
#include "standard_io.hh" #include "standard_io.hh"
#include "start_gui.hh"
#include "text_simulation.hh" #include "text_simulation.hh"
#include "templates/smartp.hh" #include "templates/smartp.hh"
@ -77,9 +76,6 @@ main(int argc, char** argv) {
memory::smart_ptr<IOManager> io(new StandardIO()); memory::smart_ptr<IOManager> io(new StandardIO());
text_sim.add_io_device(io); text_sim.add_io_device(io);
text_sim.update(); text_sim.update();
text_sim.run();
//grafical IO exit(0);
// I didn't add a GraphicalTerminalIO, so why do I get a bloody one??
start_gui(argc, argv, text_sim);
} }