remove unused ConsoleOn/Off events

This commit is contained in:
Thomas Jentzsch 2019-08-18 18:19:16 +02:00
parent 3498004616
commit 14ad7d95cf
2 changed files with 2 additions and 3 deletions

View File

@ -38,7 +38,7 @@ class Event
enum Type
{
NoType = 0,
ConsoleOn, ConsoleOff, ConsoleColor, ConsoleBlackWhite,
ConsoleColor, ConsoleBlackWhite,
ConsoleLeftDiffA, ConsoleLeftDiffB,
ConsoleRightDiffA, ConsoleRightDiffB,
ConsoleSelect, ConsoleReset,
@ -134,7 +134,7 @@ class Event
};
// 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>;

View File

@ -1967,7 +1967,6 @@ const Event::EventSet EventHandler::StateEvents = {
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
const Event::EventSet EventHandler::ConsoleEvents = {
// Event::ConsoleOn, Event::ConsoleOff,
Event::ConsoleColor, Event::ConsoleBlackWhite,
Event::ConsoleLeftDiffA, Event::ConsoleLeftDiffB,
Event::ConsoleRightDiffA, Event::ConsoleRightDiffB,