The pic dimensions need to be in
power of two, not
dividable by two... So you can't use something like 32x96, or 1724x526....
Don't know how to explain this in english any better, but:
The dimensions need to be dividable by each other, like 32x64, resulting in an integer value of power of two (0,2,4,6,8,10...etc.)...
So you can use 32x32, 32x64, 64x64, 32x128, etc, etc....
If you want a pic that fills the whole screen, first make the pic in the dimensions of the screen, then re-size it something like 1024x1024, and then control it's size in OFP by adjustig the 'w' (width) and 'h' (height) values in
class RscTitles...
And of course if I'm sharing mis-information here, please correct me...