summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author Michaël Banaan Ananas <happppp@users.noreply.github.com>2010-05-25 04:23:12 +0000
committer Michaël Banaan Ananas <happppp@users.noreply.github.com>2010-05-25 04:23:12 +0000
commit6e37021618b1250ddad4aa06efabe362cfd5f2b8 (patch)
treeffd90c93540d31c7d6d56ee68465c560970e23d4
parent9d6d27ac1c645c52bd7d1005363220a6b9d26982 (diff)
done some double checking, Flower is definitely by Wood Place (spelled with space inbetween btw), compared with clashroad: same soundchip, same font, same programmer (other woodplace games too)
-rw-r--r--src/mame/drivers/clshroad.c4
-rw-r--r--src/mame/drivers/flower.c4
-rw-r--r--src/mame/drivers/kingobox.c14
-rw-r--r--src/mame/drivers/thedeep.c2
-rw-r--r--src/mame/drivers/tsamurai.c6
-rw-r--r--src/mame/drivers/vsnes.c2
-rw-r--r--src/mame/mamedriv.c12
7 files changed, 22 insertions, 22 deletions
diff --git a/src/mame/drivers/clshroad.c b/src/mame/drivers/clshroad.c
index 004df3be716..2701216e60e 100644
--- a/src/mame/drivers/clshroad.c
+++ b/src/mame/drivers/clshroad.c
@@ -464,5 +464,5 @@ die once, it would be nice to avoid the hack however
}
GAME( 1984, firebatl, 0, firebatl, firebatl, firebatl, ROT90, "Taito", "Fire Battle", GAME_IMPERFECT_GRAPHICS )
-GAME( 1986, clshroad, 0, clshroad, clshroad, 0, ROT0, "Woodplace Inc.", "Clash-Road", 0 )
-GAME( 1986, clshroads,clshroad, clshroad, clshroad, 0, ROT0, "Woodplace Inc. (Status Game Corp. license)", "Clash-Road (Status license)", 0 )
+GAME( 1986, clshroad, 0, clshroad, clshroad, 0, ROT0, "Wood Place Inc.", "Clash-Road", 0 )
+GAME( 1986, clshroads,clshroad, clshroad, clshroad, 0, ROT0, "Wood Place Inc. (Status Game Corp. license)", "Clash-Road (Status license)", 0 )
diff --git a/src/mame/drivers/flower.c b/src/mame/drivers/flower.c
index 6de7b2727e9..d7610413c91 100644
--- a/src/mame/drivers/flower.c
+++ b/src/mame/drivers/flower.c
@@ -365,5 +365,5 @@ ROM_START( flowerj ) /* Sega/Alpha version. Sega game number 834-5998 */
ROM_END
-GAME( 1986, flower, 0, flower, flower, 0, ROT0, "Sega / Alpha Denshi Co. (Komax license)", "Flower (US)", GAME_IMPERFECT_SOUND | GAME_SUPPORTS_SAVE )
-GAME( 1986, flowerj, flower, flower, flower, 0, ROT0, "Sega / Alpha Denshi Co.", "Flower (Japan)", GAME_IMPERFECT_SOUND | GAME_SUPPORTS_SAVE)
+GAME( 1986, flower, 0, flower, flower, 0, ROT0, "Wood Place Inc. (Komax license)", "Flower (US)", GAME_IMPERFECT_SOUND | GAME_SUPPORTS_SAVE )
+GAME( 1986, flowerj, flower, flower, flower, 0, ROT0, "Wood Place Inc. (Sega / Alpha license)", "Flower (Japan)", GAME_IMPERFECT_SOUND | GAME_SUPPORTS_SAVE)
diff --git a/src/mame/drivers/kingobox.c b/src/mame/drivers/kingobox.c
index 4390e293f45..054fcb987e8 100644
--- a/src/mame/drivers/kingobox.c
+++ b/src/mame/drivers/kingobox.c
@@ -1,7 +1,7 @@
/***************************************************************************
-King of Boxer - (c) 1985 Woodplace Inc.
-Ring King - (c) 1985 Data East USA Inc. / Woodplace Inc.
+King of Boxer - (c) 1985 Wood Place Inc.
+Ring King - (c) 1985 Data East USA Inc. / Wood Place Inc.
Driver by:
Ernesto Corvi
@@ -829,8 +829,8 @@ static DRIVER_INIT( ringkingw )
}
-GAME( 1985, kingofb, 0, kingofb, kingofb, 0, ROT90, "Woodplace Inc.", "King of Boxer (English)", GAME_SUPPORTS_SAVE )
-GAME( 1985, ringking, kingofb, ringking, ringking, 0, ROT90, "Woodplace Inc. (Data East USA license)", "Ring King (US set 1)", GAME_SUPPORTS_SAVE )
-GAME( 1985, ringking2, kingofb, ringking, ringking, 0, ROT90, "Woodplace Inc. (Data East USA license)", "Ring King (US set 2)", GAME_SUPPORTS_SAVE )
-GAME( 1985, ringking3, kingofb, kingofb, kingofb, ringking3,ROT90, "Woodplace Inc. (Data East USA license)", "Ring King (US set 3)", GAME_SUPPORTS_SAVE )
-GAME( 1985, ringkingw, kingofb, kingofb, kingofb, ringkingw,ROT90, "Woodplace Inc.", "Ring King (US, Woodplace Inc.)", GAME_SUPPORTS_SAVE )
+GAME( 1985, kingofb, 0, kingofb, kingofb, 0, ROT90, "Wood Place Inc.", "King of Boxer (English)", GAME_SUPPORTS_SAVE )
+GAME( 1985, ringking, kingofb, ringking, ringking, 0, ROT90, "Wood Place Inc. (Data East USA license)", "Ring King (US set 1)", GAME_SUPPORTS_SAVE )
+GAME( 1985, ringking2, kingofb, ringking, ringking, 0, ROT90, "Wood Place Inc. (Data East USA license)", "Ring King (US set 2)", GAME_SUPPORTS_SAVE )
+GAME( 1985, ringking3, kingofb, kingofb, kingofb, ringking3,ROT90, "Wood Place Inc. (Data East USA license)", "Ring King (US set 3)", GAME_SUPPORTS_SAVE )
+GAME( 1985, ringkingw, kingofb, kingofb, kingofb, ringkingw,ROT90, "Wood Place Inc.", "Ring King (US, Wood Place Inc.)", GAME_SUPPORTS_SAVE )
diff --git a/src/mame/drivers/thedeep.c b/src/mame/drivers/thedeep.c
index 4955735cedb..18df631e26d 100644
--- a/src/mame/drivers/thedeep.c
+++ b/src/mame/drivers/thedeep.c
@@ -482,5 +482,5 @@ ROM_START( rundeep )
ROM_LOAD( "fi-3", 0x400, 0x200, CRC(f61a9686) SHA1(24082f60b72268d240ceca6999bdf18872625cd2) )
ROM_END
-GAME( 1987, thedeep, 0, thedeep, thedeep, 0, ROT270, "Woodplace Inc.", "The Deep (Japan)", 0 )
+GAME( 1987, thedeep, 0, thedeep, thedeep, 0, ROT270, "Wood Place Inc.", "The Deep (Japan)", 0 )
GAME( 1988, rundeep, thedeep,thedeep, thedeep, 0, ROT270, "bootleg? (Cream)", "Run Deep", 0 )
diff --git a/src/mame/drivers/tsamurai.c b/src/mame/drivers/tsamurai.c
index 40e244fdf89..20e5cea2d4b 100644
--- a/src/mame/drivers/tsamurai.c
+++ b/src/mame/drivers/tsamurai.c
@@ -1238,7 +1238,7 @@ GAME( 1985, nunchaku, ladymstr, tsamurai, nunchaku, 0, ROT90, "Kaneko / Taito",
GAME( 1985, yamagchi, 0, tsamurai, yamagchi, 0, ROT90, "Kaneko / Taito", "Go Go Mr. Yamaguchi / Yuke Yuke Yamaguchi-kun", GAME_IMPERFECT_COLORS )
-GAME( 1986, m660, 0, m660, m660, 0, ROT90, "Woodplace Inc. (Taito America Corporation license)", "Mission 660 (US)", 0 )
-GAME( 1986, m660j, m660, m660, m660, 0, ROT90, "Woodplace Inc. (Taito Corporation license)", "Mission 660 (Japan)", 0 )
+GAME( 1986, m660, 0, m660, m660, 0, ROT90, "Wood Place Inc. (Taito America Corporation license)", "Mission 660 (US)", 0 )
+GAME( 1986, m660j, m660, m660, m660, 0, ROT90, "Wood Place Inc. (Taito Corporation license)", "Mission 660 (Japan)", 0 )
GAME( 1986, m660b, m660, m660, m660, 0, ROT90, "bootleg", "Mission 660 (bootleg)", 0 )
-GAME( 1986, alphaxz, m660, m660, m660, 0, ROT90, "Ed Co. Ltd. (Woodplace Inc. license)", "The Alphax Z (Japan)", 0 )
+GAME( 1986, alphaxz, m660, m660, m660, 0, ROT90, "Ed Co. Ltd. (Wood Place Inc. license)", "The Alphax Z (Japan)", 0 )
diff --git a/src/mame/drivers/vsnes.c b/src/mame/drivers/vsnes.c
index 2983b37ebf3..192a4ac70b3 100644
--- a/src/mame/drivers/vsnes.c
+++ b/src/mame/drivers/vsnes.c
@@ -76,7 +76,7 @@ Graphic hack games:
Needed roms:
- Babel no Tou (by Namco, 1986)
-- Family Boxing (by Namco/Woodplace, 1987; Japan version of TKO Boxing)
+- Family Boxing (by Namco/Wood Place, 1987; Japan version of TKO Boxing)
- Family Stadium '87 (by Namco, 1987; sequel to RBI Baseball)
- Family Stadium '88 (by Namco, 1988; sequel to RBI Baseball)
- Family Tennis (by Namco, 1987)
diff --git a/src/mame/mamedriv.c b/src/mame/mamedriv.c
index 62b65475dd8..fd6bf65a6be 100644
--- a/src/mame/mamedriv.c
+++ b/src/mame/mamedriv.c
@@ -391,7 +391,7 @@ const game_driver * const drivers[] =
DRIVER( seicross ) /* (c) 1984 + Alice */
DRIVER( sectrzon ) /* (c) 1984 + Alice */
DRIVER( firebatl ) /* (c) 1984 Taito */
- DRIVER( clshroad ) /* (c) 1986 Woodplace Inc. */
+ DRIVER( clshroad ) /* (c) 1986 Wood Place Inc. */
DRIVER( clshroads ) /* (c) 1986 Status Games */
DRIVER( tubep ) /* (c) 1984 + Fujitek */
DRIVER( tubepb ) /* (c) 1984 + bootleg */
@@ -3818,8 +3818,6 @@ DokiDoki Penguin Land *not confirmed
DRIVER( suprlocoa ) /* (c) 1982 Sega */
DRIVER( dotrikun ) /* cabinet test board */
DRIVER( dotrikun2 ) /* cabinet test board */
- DRIVER( flower ) /* (c) 1986 Komax license */
- DRIVER( flowerj ) /* 834-5998 (c) 1986 Sega / Alpha */
DRIVER( spcpostn ) /* (c) 1986 Sega / Nasco" */
DRIVER( angelkds ) /* 833-6599 (c) 1988 Sega / Nasco? */
DRIVER( calorie ) /* (c) 1986 Sega */
@@ -8822,11 +8820,13 @@ Other Sun games
DRIVER( ddayc ) /* (c) 1982 Olympia + Centuri license */
DRIVER( stactics ) /* [1981 Sega] */
DRIVER( exterm ) /* (c) 1989 Premier Technology - a Gottlieb game */
- DRIVER( kingofb ) /* (c) 1985 Woodplace Inc. */
+ DRIVER( flower ) /* (c) 1986 Komax license */
+ DRIVER( flowerj ) /* 834-5998 (c) 1986 Sega / Alpha license? */
+ DRIVER( kingofb ) /* (c) 1985 Wood Place Inc. */
DRIVER( ringking ) /* (c) 1985 Data East USA */
DRIVER( ringking2 ) /* (c) 1985 Data East USA */
DRIVER( ringking3 ) /* (c) 1985 Data East USA */
- DRIVER( ringkingw ) /* (c) 1985 Woodplace Inc. */
+ DRIVER( ringkingw ) /* (c) 1985 Wood Place Inc. */
DRIVER( homo ) /* bootleg */
DRIVER( dlair ) /* (c) 1983 Cinematronics */
DRIVER( dlairf ) /* (c) 1983 Cinematronics */
@@ -8982,7 +8982,7 @@ Other Sun games
DRIVER( crgolfbt ) /* bootleg */
DRIVER( crgolfhi ) /* (c) 1984 Nasco Japan */
DRIVER( truco ) /* (c) 198? Playtronic SRL */
- DRIVER( thedeep ) /* (c) 1987 Woodplace */
+ DRIVER( thedeep ) /* (c) 1987 Wood Place */
DRIVER( rundeep ) /* (c) 1988 Cream (bootleg?) */
DRIVER( wallc ) /* (c) 1984 Midcoin */
DRIVER( wallca ) /* (c) 1984 Midcoin */