mirror of https://github.com/stella-emu/stella.git
Fix build w/o debugger.
This commit is contained in:
parent
24737671c0
commit
cdfac18f1c
|
@ -24,6 +24,7 @@
|
||||||
#include "CartCM.hxx"
|
#include "CartCM.hxx"
|
||||||
#include "Control.hxx"
|
#include "Control.hxx"
|
||||||
#include "Event.hxx"
|
#include "Event.hxx"
|
||||||
|
#include "Console.hxx"
|
||||||
|
|
||||||
/**
|
/**
|
||||||
Handler for SpectraVideo CompuMate bankswitched games.
|
Handler for SpectraVideo CompuMate bankswitched games.
|
||||||
|
|
|
@ -460,8 +460,10 @@ class OSystem
|
||||||
unique_ptr<Launcher> myLauncher;
|
unique_ptr<Launcher> myLauncher;
|
||||||
bool myLauncherUsed;
|
bool myLauncherUsed;
|
||||||
|
|
||||||
|
#ifdef DEBUGGER_SUPPORT
|
||||||
// Pointer to the Debugger object
|
// Pointer to the Debugger object
|
||||||
unique_ptr<Debugger> myDebugger;
|
unique_ptr<Debugger> myDebugger;
|
||||||
|
#endif
|
||||||
|
|
||||||
// Pointer to the CheatManager object
|
// Pointer to the CheatManager object
|
||||||
unique_ptr<CheatManager> myCheatManager;
|
unique_ptr<CheatManager> myCheatManager;
|
||||||
|
|
Loading…
Reference in New Issue