@@ -46,7 +46,6 @@ Note that left-most digit is not wired up, and therefore will always be blank.
46
46
#include " machine/timer.h"
47
47
#include " imagedev/cassette.h"
48
48
#include " speaker.h"
49
- #include " utf8.h"
50
49
51
50
#include " acrnsys1.lh"
52
51
@@ -231,13 +230,13 @@ static INPUT_PORTS_START( acrnsys1 )
231
230
232
231
PORT_START(" X6" )
233
232
PORT_BIT(0x08 , IP_ACTIVE_LOW, IPT_KEYBOARD) PORT_NAME(" E" ) PORT_CODE(KEYCODE_E) PORT_CHAR(' E' )
234
- PORT_BIT(0x10 , IP_ACTIVE_LOW, IPT_KEYBOARD) PORT_NAME(UTF8_UP ) PORT_CODE(KEYCODE_UP) PORT_CHAR(' ^' )
233
+ PORT_BIT(0x10 , IP_ACTIVE_LOW, IPT_KEYBOARD) PORT_NAME(u8" \u2191 " ) PORT_CODE(KEYCODE_UP) PORT_CHAR(' ^' ) // U+2191 = ↑
235
234
PORT_BIT(0x20 , IP_ACTIVE_LOW, IPT_KEYBOARD) PORT_NAME(" 6" ) PORT_CODE(KEYCODE_6) PORT_CHAR(' 6' )
236
235
PORT_BIT(0xc7 , IP_ACTIVE_LOW, IPT_UNUSED)
237
236
238
237
PORT_START(" X7" )
239
238
PORT_BIT(0x08 , IP_ACTIVE_LOW, IPT_KEYBOARD) PORT_NAME(" F" ) PORT_CODE(KEYCODE_F) PORT_CHAR(' F' )
240
- PORT_BIT(0x10 , IP_ACTIVE_LOW, IPT_KEYBOARD) PORT_NAME(UTF8_DOWN ) PORT_CODE(KEYCODE_DOWN) PORT_CHAR(' V' )
239
+ PORT_BIT(0x10 , IP_ACTIVE_LOW, IPT_KEYBOARD) PORT_NAME(u8" \u2193 " ) PORT_CODE(KEYCODE_DOWN) PORT_CHAR(' V' ) // U+2193 = ↓
241
240
PORT_BIT(0x20 , IP_ACTIVE_LOW, IPT_KEYBOARD) PORT_NAME(" 7" ) PORT_CODE(KEYCODE_7) PORT_CHAR(' 7' )
242
241
PORT_BIT(0xc7 , IP_ACTIVE_LOW, IPT_UNUSED)
243
242
0 commit comments