I've discovered one small problem in cleanstretch. When I try start game in resolution lower than resolution of game for example I'm trying run Violent Storm that works at 385x224 (that's right, MAME reports in base 384x224 but game indeed starts in 385x224) in resolution 384x224 then I have no picture.
Just after
Code:
if (xscale > yscale) {
xscale = yscale;
}
if (yscale > xscale)
{
yscale = xscale;
}
I added
Code:
if (xscale < 1) {
xscale = 1;
yscale = 1;
}
if (yscale < 1)
{
xscale = 1;
yscale = 1;
}
Probably not clean and nice fix but it works. Any better solutions SailorSat?