From 484b8cc685f04ffd6531a66f633d885ffcde926d Mon Sep 17 00:00:00 2001 From: "simon.kagstrom" Date: Sun, 14 Feb 2010 09:30:16 +0000 Subject: [PATCH] Create the data store singleton --- Src/main.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Src/main.cpp b/Src/main.cpp index f09c005..88f549d 100644 --- a/Src/main.cpp +++ b/Src/main.cpp @@ -28,6 +28,7 @@ #include "Prefs.h" #include "SAM.h" #include "gui/gui.hh" +#include "data_store.hh" #include "utils.hh" @@ -249,6 +250,7 @@ void Frodo::ReadyToRun(void) // Create and start C64 TheC64 = new C64; + DataStore::ds = new DataStore(); Gui::init(); load_rom_files(); TheC64->Run();