Skip to content
Snippets Groups Projects
Commit 377818a5 authored by deuce's avatar deuce
Browse files

Handle all local chars immediately.

parent 9b7a0439
No related branches found
No related tags found
No related merge requests found
......@@ -219,9 +219,13 @@ ODAPIDEF BOOL ODCALL od_get_input(tODInputEvent *pInputEvent,
return(FALSE);
}
/* If you have a *local* extended char, send it immediately */
/* If you have a *local* char, send it immediately */
if((!LastInputEvent.bFromRemote) && (LastInputEvent.chKeyPress != 0)
#if 0
&& (LastInputEvent.EventType == EVENT_EXTENDED_KEY)) {
#else
) {
#endif
memcpy(pInputEvent, &LastInputEvent, sizeof(tODInputEvent));
OD_API_EXIT();
return(TRUE);
......@@ -293,9 +297,13 @@ ODAPIDEF BOOL ODCALL od_get_input(tODInputEvent *pInputEvent,
break;
}
/* If you have a *local* extended char, send it immediately */
/* If you have a *local* char, send it immediately */
if((!LastInputEvent.bFromRemote) && (LastInputEvent.chKeyPress != 0)
#if 0
&& (LastInputEvent.EventType == EVENT_EXTENDED_KEY)) {
#else
) {
#endif
memcpy(pInputEvent, &LastInputEvent, sizeof(tODInputEvent));
OD_API_EXIT();
return(TRUE);
......
No preview for this file type
No preview for this file type
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment