Okay so I’m trying to get an overlay for the MAME game Frogs up and running. I have artwork for it and used the method:
overlays = 1
overlay0_overlay = PutNameOfBezelHere.png
overlay0_full_screen = true
overlay0_descs = 0
and that worked. But for this particular game the artwork comes with 3 different png’s that are all suppose to work together, the background image (called “frogs backdrop.png”) where the game’s sprites play on and two tree images, (one that goes on the left side of the background image (called tree_left.png) and one that goes on the right (called tree_right.png). I can get just the background image to display but how do I add in the two trees? Here’s an example of how it looks with just the background and how I managed to get it to look:
And here’s how it’s suppose to look with the two trees includedI tried configuring the cfg file but I don’t think it’s anywhere close to what it’s suppose to be here:
overlays = 3
overlay0_overlay = frogs.png
overlay0_full_screen = true
overlay0_descs = 0
overlay1_overlay = frogs_tree_left.png
overlay1_full_screen = false
overlay1_rect = "0.0,0.0,0.0,1.1
overlay2_overlay = frogs_tree_right.png
overlay2_full_screen = false
overlay2_rect = "0.0,0.0,0.1,0.0
but I don’t think that cfg config is anywhere how it’s suppose to look and on top of that the overlay won’t even display anymore after using that configuration. Not sure exactly how to which lines I’m suppose to put into the cfg file.