MikeFu Posted Sunday at 08:17 PM Posted Sunday at 08:17 PM 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? Quote
dragon57 Posted Monday at 05:37 AM Posted Monday at 05:37 AM 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 Monday at 01:45 PM Author Posted Monday at 01:45 PM 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 Tuesday at 07:05 PM Posted Tuesday at 07:05 PM A new Windows installer, V1.1.15, has been pushed to Github which should write out MAME lay files in the modified format. 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.