mirror of https://github.com/stella-emu/stella.git
remove unused ConsoleOn/Off events
This commit is contained in:
parent
3498004616
commit
14ad7d95cf
|
@ -38,7 +38,7 @@ class Event
|
||||||
enum Type
|
enum Type
|
||||||
{
|
{
|
||||||
NoType = 0,
|
NoType = 0,
|
||||||
ConsoleOn, ConsoleOff, ConsoleColor, ConsoleBlackWhite,
|
ConsoleColor, ConsoleBlackWhite,
|
||||||
ConsoleLeftDiffA, ConsoleLeftDiffB,
|
ConsoleLeftDiffA, ConsoleLeftDiffB,
|
||||||
ConsoleRightDiffA, ConsoleRightDiffB,
|
ConsoleRightDiffA, ConsoleRightDiffB,
|
||||||
ConsoleSelect, ConsoleReset,
|
ConsoleSelect, ConsoleReset,
|
||||||
|
@ -134,7 +134,7 @@ class Event
|
||||||
};
|
};
|
||||||
|
|
||||||
// Event list version, update if the id of existing event types changed
|
// Event list version, update if the id of existing event types changed
|
||||||
static constexpr Int32 VERSION = 3;
|
static constexpr Int32 VERSION = 1;
|
||||||
|
|
||||||
using EventSet = std::set<Event::Type>;
|
using EventSet = std::set<Event::Type>;
|
||||||
|
|
||||||
|
|
|
@ -1967,7 +1967,6 @@ const Event::EventSet EventHandler::StateEvents = {
|
||||||
|
|
||||||
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||||
const Event::EventSet EventHandler::ConsoleEvents = {
|
const Event::EventSet EventHandler::ConsoleEvents = {
|
||||||
// Event::ConsoleOn, Event::ConsoleOff,
|
|
||||||
Event::ConsoleColor, Event::ConsoleBlackWhite,
|
Event::ConsoleColor, Event::ConsoleBlackWhite,
|
||||||
Event::ConsoleLeftDiffA, Event::ConsoleLeftDiffB,
|
Event::ConsoleLeftDiffA, Event::ConsoleLeftDiffB,
|
||||||
Event::ConsoleRightDiffA, Event::ConsoleRightDiffB,
|
Event::ConsoleRightDiffA, Event::ConsoleRightDiffB,
|
||||||
|
|
Loading…
Reference in New Issue