Previous 199869 Revisions Next

r18393 Tuesday 9th October, 2012 at 19:48:57 UTC by hap
so generic color overlays are supposed to go to emu/layout(?)
[src/emu]emu.mak rendlay.c rendlay.h
[src/emu/layout]ho1880ff.lay*
[src/mame]mame.mak
[src/mame/drivers]skydiver.c
[src/mame/layout]skydiver.lay

trunk/src/mame/layout/skydiver.lay
r18392r18393
1<?xml version="1.0"?>
2<mamelayout version="2">
3   <element name="overlay">
4      <rect>
5         <color red="0.094" green="0.5" blue="1.0" />
6      </rect>
7   </element>
8
9   <view name="Color Overlay">
10      <screen index="0">
11         <bounds left="0" top="0" right="4" bottom="3" />
12      </screen>
13      <overlay element="overlay">
14         <bounds left="0" top="0" right="4" bottom="3" />
15      </overlay>
16   </view>
17</mamelayout>
trunk/src/mame/drivers/skydiver.c
r18392r18393
8787***************************************************************************/
8888
8989#include "emu.h"
90#include "rendlay.h"
9091#include "cpu/m6800/m6800.h"
9192#include "includes/skydiver.h"
9293#include "sound/discrete.h"
9394
94#include "skydiver.lh"
95
9695#define MASTER_CLOCK (XTAL_12_096MHz)
9796
9897
r18392r18393
434433 *
435434 *************************************/
436435
437GAMEL(1978, skydiver, 0, skydiver, skydiver, driver_device, 0, ROT0, "Atari", "Sky Diver", 0, layout_skydiver )
436GAMEL(1978, skydiver, 0, skydiver, skydiver, driver_device, 0, ROT0, "Atari", "Sky Diver", 0, layout_ho1880ff )
trunk/src/mame/mame.mak
r18392r18393
22092209
22102210$(DRIVERS)/segaybd.o:   $(LAYOUT)/pdrift.lh
22112211
2212$(DRIVERS)/skydiver.o:   $(LAYOUT)/skydiver.lh
2213
22142212$(DRIVERS)/snookr10.o:   $(LAYOUT)/snookr10.lh
22152213
22162214$(DRIVERS)/spectra.o:   $(LAYOUT)/spectra.lh
trunk/src/emu/emu.mak
r18392r18393
392392                  $(EMULAYOUT)/triphsxs.lh \
393393                  $(EMULAYOUT)/quadhsxs.lh \
394394                  $(EMULAYOUT)/vertical.lh \
395                  $(EMULAYOUT)/ho1880ff.lh \
395396                  $(EMULAYOUT)/ho20ffff.lh \
396397                  $(EMULAYOUT)/ho2eff2e.lh \
397398                  $(EMULAYOUT)/ho4f893d.lh \
trunk/src/emu/rendlay.c
r18392r18393
110110#include "quadhsxs.lh"
111111
112112// generic color overlay layouts
113#include "ho1880ff.lh"
113114#include "ho20ffff.lh"
114115#include "ho2eff2e.lh"
115116#include "ho4f893d.lh"
trunk/src/emu/rendlay.h
r18392r18393
340340extern const char layout_quadhsxs[];   // quad 4:3 screens side-by-side
341341
342342// generic color overlay layouts
343extern const char layout_ho1880ff[];   // horizontal 4:3 with 18,80,FF color overlay
343344extern const char layout_ho20ffff[];   // horizontal 4:3 with 20,FF,FF color overlay
344345extern const char layout_ho2eff2e[];   // horizontal 4:3 with 2E,FF,2E color overlay
345346extern const char layout_ho4f893d[];   // horizontal 4:3 with 4F,89,3D color overlay
trunk/src/emu/layout/ho1880ff.lay
r0r18393
1<?xml version="1.0"?>
2<mamelayout version="2">
3   <element name="overlay">
4      <rect>
5         <bounds left="0" top="0" right="1" bottom="1" />
6         <color red="0.094" green="0.5" blue="1.0" />
7      </rect>
8   </element>
9
10   <view name="Color Overlay">
11      <screen index="0">
12         <bounds left="0" top="0" right="4" bottom="3" />
13      </screen>
14      <overlay element="overlay">
15         <bounds left="0" top="0" right="4" bottom="3" />
16      </overlay>
17   </view>
18</mamelayout>

Previous 199869 Revisions Next


© 1997-2024 The MAME Team