mirror of
https://github.com/mamedev/mame.git
synced 2024-11-16 07:48:32 +01:00
midway/midvunit.h: Fix range error in "Galil" wheel controller emulation. [R. Belmont]
This commit is contained in:
parent
c4206a6867
commit
ddb09db33b
1 changed files with 1 additions and 1 deletions
|
@ -182,7 +182,7 @@ protected:
|
|||
uint8_t m_galil_input_index = 0;
|
||||
uint8_t m_galil_input_length = 0;
|
||||
const char *m_galil_input = nullptr;
|
||||
uint8_t m_galil_output_index = 0;
|
||||
uint16_t m_galil_output_index = 0;
|
||||
char m_galil_output[450]{};
|
||||
uint8_t m_wheel_board_output = 0;
|
||||
uint32_t m_wheel_board_last = 0;
|
||||
|
|
Loading…
Reference in a new issue