diff options
Diffstat (limited to 'src/mame/drivers/exidy.cpp')
-rw-r--r-- | src/mame/drivers/exidy.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/exidy.cpp b/src/mame/drivers/exidy.cpp index ab9b5b3aecd..e51782a85b9 100644 --- a/src/mame/drivers/exidy.cpp +++ b/src/mame/drivers/exidy.cpp @@ -159,7 +159,7 @@ Fax 1982 6502 FXL, FLA CUSTOM_INPUT_MEMBER(exidy_state::teetert_input_r) { - UINT8 dial = ioport("DIAL")->read(); + uint8_t dial = ioport("DIAL")->read(); int result = 0; result = (dial != m_last_dial) << 4; |