function key notifications became notifies fix
This commit is contained in:
parent
447b988154
commit
66dab193f3
@ -26,13 +26,22 @@ FORWARD _PROTOTYPE( void fproc_dmp, (void));
|
|||||||
PUBLIC int do_fkey_pressed(void)
|
PUBLIC int do_fkey_pressed(void)
|
||||||
{
|
{
|
||||||
printf("Debug dump of FS data structure: ");
|
printf("Debug dump of FS data structure: ");
|
||||||
|
#if DEAD_CODE
|
||||||
switch (m_in.FKEY_CODE) {
|
switch (m_in.FKEY_CODE) {
|
||||||
|
#else
|
||||||
|
switch (m_in.NOTIFY_FLAGS) {
|
||||||
|
#endif
|
||||||
case SF5: fproc_dmp(); break;
|
case SF5: fproc_dmp(); break;
|
||||||
case SF6: dtab_dmp(); break;
|
case SF6: dtab_dmp(); break;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
|
#if DEAD_CODE
|
||||||
printf("FS: unhandled notification for Shift+F%d key.\n",
|
printf("FS: unhandled notification for Shift+F%d key.\n",
|
||||||
m_in.FKEY_NUM);
|
m_in.FKEY_NUM);
|
||||||
|
#else
|
||||||
|
printf("FS: unhandled notification for Shift+F%d key.\n",
|
||||||
|
m_in.NOTIFY_FLAGS);
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user