diff options
Diffstat (limited to 'src/mame/layout/hh_sm500_test.lay')
-rw-r--r-- | src/mame/layout/hh_sm500_test.lay | 21 |
1 files changed, 12 insertions, 9 deletions
diff --git a/src/mame/layout/hh_sm500_test.lay b/src/mame/layout/hh_sm500_test.lay index 2c6a0ccd988..921148d7f06 100644 --- a/src/mame/layout/hh_sm500_test.lay +++ b/src/mame/layout/hh_sm500_test.lay @@ -1,4 +1,8 @@ <?xml version="1.0"?> +<!-- +license:CC0-1.0 +authors:hap +--> <mamelayout version="2"> <!-- define elements --> @@ -15,28 +19,27 @@ <!-- build screen --> <view name="Test Layout"> - <bounds left="0" right="10" top="0" bottom="10" /> - <bezel element="static_black"> - <bounds left="0" right="10" top="0" bottom="10" /> - </bezel> + <bounds left="0" right="10" top="0" bottom="12" /> + <element ref="static_black"> + <bounds left="0" right="10" top="0" bottom="12" /> + </element> - <!-- max 9*4*2 matrix --> - - <repeat count="9"> + <!-- max 12*4*2 matrix --> + <repeat count="12"> <param name="y" start="0" increment="1" /> <!-- h1 --> <repeat count="4"> <param name="x" start="0" increment="1" /> <param name="p" start="0" increment="1" /> - <bezel name="~y~.~x~.0" element="led"><bounds x="~p~" y="~y~" width="0.5" height="0.5" /></bezel> + <element name="~y~.~x~.0" ref="led"><bounds x="~p~" y="~y~" width="0.5" height="0.5" /></element> </repeat> <!-- h2 --> <repeat count="4"> <param name="x" start="0" increment="1" /> <param name="p" start="5" increment="1" /> - <bezel name="~y~.~x~.1" element="led"><bounds x="~p~" y="~y~" width="0.5" height="0.5" /></bezel> + <element name="~y~.~x~.1" ref="led"><bounds x="~p~" y="~y~" width="0.5" height="0.5" /></element> </repeat> </repeat> |