MikeFu Posted November 2 Posted November 2 I'm having an issue with the lay files that are downloaded with the bezel project. The current lay file order has the bezel first and then the screen. See this example: <!-- bezel.lay --> <mamelayout version="2"> <element name="bezel"> <image file="bezel.png" /> </element> <view name="Bezel Artwork"> <bezel element="bezel"> <bounds left="0" top="0" right="16" bottom="9" /> </bezel> <screen index="0"> <bounds left="2" top="0" right="14" bottom="9" /> </screen> </view> </mamelayout> This causes the bezel to be drawn first and then the screen goes on top. Unfortunately this cuts off the bezel. If I update the lay file and put the screen field first it works as expected: <!-- bezel.lay --> <mamelayout version="2"> <element name="bezel"> <image file="bezel.png" /> </element> <view name="Bezel Artwork"> <screen index="0"> <bounds left="2" top="0" right="14" bottom="9" /> </screen> <bezel element="bezel"> <bounds left="0" top="0" right="16" bottom="9" /> </bezel> </view> </mamelayout> Is anyone else noticing this issue or is there a different fix? 1 Quote
dragon57 Posted November 3 Posted November 3 Many thanks for pointing this out. I will create an item in the project to address the lay file format as you stated. Quote
MikeFu Posted November 3 Author Posted November 3 Thanks for the update. Please feel free to let me know when the change is made and I'll test it out. Quote
dragon57 Posted November 4 Posted November 4 A new Windows installer, V1.1.15, has been pushed to Github which should write out MAME lay files in the modified format. 2 Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.