Mach64 changes :

- No longer crashes PCem when remapping (mostly seen when changing resolution in Windows)
- Added PCI registers
- Added LFB emulation (PCI only)
- Source pattern modes now work correctly
- Vsync flag now emulated correctly
- Scrolling in accelerator modes now works correctly

Also disabled some debug.
This commit is contained in:
TomW 2013-10-12 16:20:27 +01:00
commit 1c623fe1fc
6 changed files with 293 additions and 83 deletions

View file

@ -99,11 +99,11 @@ void keyboard_poll_host()
}
for (c = 0; c < 256; c++)
{
if (dinput_key[c] & 0x80) pclog("Dinput key down %i %02X\n", c, c);
// if (dinput_key[c] & 0x80) pclog("Dinput key down %i %02X\n", c, c);
if (keyboard_lookup[c] != -1)
{
key[c] = dinput_key[keyboard_lookup[c]] & 0x80;
if (key[c]) pclog("Key down %i %02X %i %02X\n", c, c, keyboard_lookup[c], keyboard_lookup[c]);
// if (key[c]) pclog("Key down %i %02X %i %02X\n", c, c, keyboard_lookup[c], keyboard_lookup[c]);
}
}
}