mirror of https://github.com/stella-emu/stella.git
Made theOSystem global so that the Mac OS specific object can call the createConsole method to open a cartridge from the user droping a file on the running icon.
git-svn-id: svn://svn.code.sf.net/p/stella/code/trunk@445 8b62c5a3-ac7e-4cc8-8f21-d9a121418aba
This commit is contained in:
parent
8a0432af80
commit
cf8b71bb25
|
@ -13,7 +13,7 @@
|
|||
// See the file "license" for information on usage and redistribution of
|
||||
// this file, and for a DISCLAIMER OF ALL WARRANTIES.
|
||||
//
|
||||
// $Id: mainSDL.cxx,v 1.42 2005-05-27 17:09:26 markgrebe Exp $
|
||||
// $Id: mainSDL.cxx,v 1.43 2005-05-28 01:23:54 markgrebe Exp $
|
||||
//============================================================================
|
||||
|
||||
#include <fstream>
|
||||
|
@ -56,7 +56,7 @@ static void SetupProperties(PropertiesSet& set);
|
|||
static void Cleanup();
|
||||
|
||||
// Pointer to the main parent osystem object or the null pointer
|
||||
static OSystem* theOSystem = (OSystem*) NULL;
|
||||
OSystem* theOSystem = (OSystem*) NULL;
|
||||
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in New Issue