Create the data store singleton

This commit is contained in:
simon.kagstrom 2010-02-14 09:30:16 +00:00
parent a28575b7ce
commit 484b8cc685

View File

@ -28,6 +28,7 @@
#include "Prefs.h" #include "Prefs.h"
#include "SAM.h" #include "SAM.h"
#include "gui/gui.hh" #include "gui/gui.hh"
#include "data_store.hh"
#include "utils.hh" #include "utils.hh"
@ -249,6 +250,7 @@ void Frodo::ReadyToRun(void)
// Create and start C64 // Create and start C64
TheC64 = new C64; TheC64 = new C64;
DataStore::ds = new DataStore();
Gui::init(); Gui::init();
load_rom_files(); load_rom_files();
TheC64->Run(); TheC64->Run();