diff options
author | 2011-01-05 21:14:20 +0000 | |
---|---|---|
committer | 2011-01-05 21:14:20 +0000 | |
commit | 2231fb32b43cf05b5bfdd4e281279d168fe8f2cf (patch) | |
tree | d58b75c60ad2d8b0ebc02ddb206030032fe3c7e5 /src/emu/layout | |
parent | 4245ddbc5e8a0f242bddb9a596b794e638de0c8c (diff) |
Moved LCD layouts to emu section and removed some more ifdefs (no whatsnew)
Diffstat (limited to 'src/emu/layout')
-rw-r--r-- | src/emu/layout/lcd.lay | 8 | ||||
-rw-r--r-- | src/emu/layout/lcd_rot.lay | 8 |
2 files changed, 16 insertions, 0 deletions
diff --git a/src/emu/layout/lcd.lay b/src/emu/layout/lcd.lay new file mode 100644 index 00000000000..8de4141324a --- /dev/null +++ b/src/emu/layout/lcd.lay @@ -0,0 +1,8 @@ +<?xml version="1.0"?> +<mamelayout version="2"> + <view name="LCD with square pixels"> + <screen index="0"> + <bounds left="0" top="0" right="~scr0width~" bottom="~scr0height~" /> + </screen> + </view> +</mamelayout> diff --git a/src/emu/layout/lcd_rot.lay b/src/emu/layout/lcd_rot.lay new file mode 100644 index 00000000000..95176d24a06 --- /dev/null +++ b/src/emu/layout/lcd_rot.lay @@ -0,0 +1,8 @@ +<?xml version="1.0"?> +<mamelayout version="2"> + <view name="LCD with square pixels"> + <screen index="0"> + <bounds left="0" top="0" right="~scr0height~" bottom="~scr0width~" /> + </screen> + </view> +</mamelayout> |