Einzelnen Beitrag anzeigen
  #5367  
Alt 13.03.2023, 14:01
fhub fhub ist offline
Lebende Foren Legende
 
Registriert seit: 19.04.2010
Beiträge: 2.572
Abgegebene Danke: 431
Erhielt 5.654 Danke für 1.304 Beiträge
Aktivitäten Langlebigkeit
12/20 14/20
Heute Beiträge
1/3 sssss2572
AW: Re: Mess Emulator für diverse Schachcomputer ist fertig!

 Zitat von hap Beitrag anzeigen
Sure, it should be possible to add a workaround to block the CE button. But in MAME's case, I'll keep the bug. Even though it's a really bad bug, it is accurate emulation.
Ok, but for CB-Emu I've already found a simple fix:
With the debugger I saw that m_inp_mux is 0x70 while the program is thinking, and in this state all (white) keys in the left column have no effect (except this buggy CE which causes a crash).
So I just ignore ALL these keys (incl. CE) by adding the following line in read_inputs() before the 'return data;':
if (m_inp_mux == 0x70) data &= 0xfe;
Mit Zitat antworten
Folgender Benutzer sagt Danke zu fhub für den nützlichen Beitrag:
kamoj (19.03.2023)