mirror of
https://github.com/autc04/Retro68.git
synced 2024-12-27 23:31:44 +00:00
Correct a missing header that would have made impossible to compile the code with Carbon. Remove commented out code.
This commit is contained in:
parent
46a380b89a
commit
812831c24f
@ -331,7 +331,7 @@ bool Console::ProcessEscSequence(char c)
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
if(windowName.size() < MAX_LEN)
|
if(windowName.size() < MAX_LEN) // Ignore subsequent characters
|
||||||
windowName+=c;
|
windowName+=c;
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
@ -351,8 +351,6 @@ void Console::PutCharNoUpdate(char c)
|
|||||||
switch(c)
|
switch(c)
|
||||||
{
|
{
|
||||||
case '\033': // Begin of an ANSI escape sequence
|
case '\033': // Begin of an ANSI escape sequence
|
||||||
//isProcessingEscSequence=true;
|
|
||||||
//sequenceStep=0;
|
|
||||||
sequenceState=State::waitingForSequenceStart;
|
sequenceState=State::waitingForSequenceStart;
|
||||||
break;
|
break;
|
||||||
case '\r':
|
case '\r':
|
||||||
|
@ -25,6 +25,7 @@
|
|||||||
#include "Events.h"
|
#include "Events.h"
|
||||||
#include <unordered_map>
|
#include <unordered_map>
|
||||||
#include <cstring>
|
#include <cstring>
|
||||||
|
#include <TextUtils.h>
|
||||||
|
|
||||||
using namespace retro;
|
using namespace retro;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user