summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author David Haywood <mamehaze@users.noreply.github.com>2015-07-31 13:35:15 +0100
committer David Haywood <mamehaze@users.noreply.github.com>2015-07-31 13:35:15 +0100
commit79c45ea3839da2980d47994a4ac74d77cde1ba30 (patch)
tree044039986f3af42cfdc7070e456fb99ebcd97e81
parent668c54497f02e32c2808d84b29019b8b0245b0f9 (diff)
give Aqua Stage a wide screen layout (nw)
(still not sure why it isn't running correctly, eg not sending valid commands for 2nd screen)
-rw-r--r--src/mame/drivers/coolridr.c6
-rw-r--r--src/mame/layout/aquastge.lay15
2 files changed, 20 insertions, 1 deletions
diff --git a/src/mame/drivers/coolridr.c b/src/mame/drivers/coolridr.c
index cc2f946089c..c7e27a852b8 100644
--- a/src/mame/drivers/coolridr.c
+++ b/src/mame/drivers/coolridr.c
@@ -280,6 +280,9 @@ to the same bank as defined through A20.
*/
+// http://www.nicozon.net/watch/sm7834644 (first part is Aqua Stage video?)
+// http://www.system16.com/hardware.php?id=841 has a picture of Aqua Stage showing the wide aspect
+
#include "emu.h"
#include "cpu/sh2/sh2.h"
@@ -287,6 +290,7 @@ to the same bank as defined through A20.
#include "sound/scsp.h"
#include "machine/nvram.h"
#include "rendlay.h"
+#include "aquastge.lh"
#define CLIPMAXX_FULL (496-1)
#define CLIPMAXY_FULL (384-1)
@@ -3942,4 +3946,4 @@ DRIVER_INIT_MEMBER(coolridr_state, aquastge)
}
GAME( 1995, coolridr, 0, coolridr, coolridr, coolridr_state, coolridr, ROT0, "Sega", "Cool Riders",MACHINE_IMPERFECT_SOUND) // region is set in test mode, this set is for Japan, USA and Export (all regions)
-GAME( 1995, aquastge, 0, aquastge, aquastge, coolridr_state, aquastge, ROT0, "Sega", "Aqua Stage",MACHINE_NOT_WORKING)
+GAMEL( 1995, aquastge, 0, aquastge, aquastge, coolridr_state, aquastge, ROT0, "Sega", "Aqua Stage",MACHINE_NOT_WORKING, layout_aquastge)
diff --git a/src/mame/layout/aquastge.lay b/src/mame/layout/aquastge.lay
new file mode 100644
index 00000000000..97aa3e4a68f
--- /dev/null
+++ b/src/mame/layout/aquastge.lay
@@ -0,0 +1,15 @@
+<?xml version="1.0"?>
+<mamelayout version="2">
+
+ <!-- exact ratio unknown, could be wider -->
+ <view name="Dual Wide Screens">
+ <screen index="0">
+ <bounds left="0" top="0" right="900" bottom="450" />
+ </screen>
+ <screen index="1">
+ <bounds left="900" top="0" right="1800" bottom="450" />
+ </screen>
+
+ </view>
+
+</mamelayout>