summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author Aaron Giles <aaron@aarongiles.com>2010-11-04 06:44:54 +0000
committer Aaron Giles <aaron@aarongiles.com>2010-11-04 06:44:54 +0000
commitd4a893ffbb20d3739201ecd995579528c8494b4f (patch)
tree782a74e3c9198bfd4f06b8660026a331c95490b4
parentae4981f8a99330724ee55b3f100b3dcee1a0b96b (diff)
Fix O umlaut like I suggested, hoping this will fix XML parsing for -listxml
-rw-r--r--src/lib/util/unicode.h2
-rw-r--r--src/mame/drivers/funworld.c2
2 files changed, 3 insertions, 1 deletions
diff --git a/src/lib/util/unicode.h b/src/lib/util/unicode.h
index 9e263224072..e5d4b3bd8c4 100644
--- a/src/lib/util/unicode.h
+++ b/src/lib/util/unicode.h
@@ -68,6 +68,8 @@
#define UTF8_MULTIPLY "\xc3\x97" /* multiplication symbol */
#define UTF8_DEGREES "\xc2\xb0" /* degrees symbol */
+#define O_UMLAUT "\xc3\x96" /* capital O with an umlaut */
+
/***************************************************************************
diff --git a/src/mame/drivers/funworld.c b/src/mame/drivers/funworld.c
index 42810e71807..e50996a2c40 100644
--- a/src/mame/drivers/funworld.c
+++ b/src/mame/drivers/funworld.c
@@ -4369,5 +4369,5 @@ GAME( 1993, jokercrd, 0, fw2ndpal, funworld, 0, ROT0, "Vesely S
GAME( 199?, mongolnw, 0, royalcd1, royalcrd, 0, ROT0, "bootleg", "Mongolfier New (Italian)", GAME_NOT_WORKING )
GAME( 199?, soccernw, 0, royalcd1, royalcrd, soccernw, ROT0, "bootleg", "Soccer New (Italian)", GAME_NOT_WORKING )
GAME( 198?, saloon, 0, saloon, saloon, saloon, ROT0, "<unknown>", "Saloon (French, encrypted)", GAME_NOT_WORKING )
-GAME( 198?, funquiz, 0, funquiz, funquiz, 0, ROT0, "Funworld / Öhlinger", "Fun World Quiz (Austrian)", 0 )
+GAME( 198?, funquiz, 0, funquiz, funquiz, 0, ROT0, "Funworld / " O_UMLAUT "hlinger", "Fun World Quiz (Austrian)", 0 )