mirror of
https://git.shylie.info/shylie/terml.git
synced 2024-11-21 15:40:07 +00:00
Emit CR as well as NL
This commit is contained in:
parent
7dd2afe186
commit
cae0ee2160
@ -87,12 +87,15 @@ void terml_windows::process_events()
|
|||||||
KEY_EVENT_RECORD* record = &input_record_buffer[i].Event.KeyEvent;
|
KEY_EVENT_RECORD* record = &input_record_buffer[i].Event.KeyEvent;
|
||||||
if (record->bKeyDown)
|
if (record->bKeyDown)
|
||||||
{
|
{
|
||||||
const char key = record->uChar.AsciiChar == '\r' ? '\n' : record->uChar.AsciiChar;
|
if (record->uChar.AsciiChar)
|
||||||
if (key)
|
|
||||||
{
|
{
|
||||||
for (int repeat = 0; repeat < record->wRepeatCount; repeat++)
|
for (int repeat = 0; repeat < record->wRepeatCount; repeat++)
|
||||||
{
|
{
|
||||||
key_event(key);
|
key_event(record->uChar.AsciiChar);
|
||||||
|
if (record->uChar.AsciiChar == '\r')
|
||||||
|
{
|
||||||
|
key_event('\n');
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user