Changeset 44023 in vbox
- Timestamp:
- Dec 3, 2012 5:53:02 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Input/PS2K.cpp
r41783 r44023 1212 1212 uint32_t u32Usage = 0; 1213 1213 1214 LogFlowFunc(("key code %02X\n", u8KeyCode 1214 LogFlowFunc(("key code %02X\n", u8KeyCode)); 1215 1215 pThis->XlatState = ScancodeToHidUsage(pThis->XlatState, u8KeyCode, &u32Usage); 1216 1216 1217 1217 if (pThis->XlatState == SS_IDLE) 1218 1218 { 1219 /* Stupid Korean key hack: convert a lone break key into a press/release sequence. */ 1220 if (u32Usage == 0x80000090 || u32Usage == 0x80000091) 1221 PS2KPutEvent(pInterface, u32Usage & ~0x80000000); 1222 1219 1223 PS2KPutEvent(pInterface, u32Usage); 1220 1224 }
Note:
See TracChangeset
for help on using the changeset viewer.