mirror of
https://github.com/Treeki/WindEmu.git
synced 2025-06-28 05:49:36 +00:00
fix Osaris modifier keys
This commit is contained in:
@ -20,7 +20,7 @@ uint32_t Emulator::readReg8(uint32_t reg) {
|
||||
if (reg == PADR) {
|
||||
return ((portValues >> 24) & 0x80) | (readKeyboard() & 0x7F);
|
||||
} else if (reg == PBDR) {
|
||||
return ((portValues >> 16) & 0x0F) | (keyboardExtra << 4);
|
||||
return ((portValues >> 16) & 0x0F) | ((keyboardExtra ^ 0xF) << 4);
|
||||
} else if (reg == PDDR) {
|
||||
return (portValues >> 8) & 0xFF;
|
||||
} else if (reg == PEDR) {
|
||||
|
Reference in New Issue
Block a user