Using Super Nintendo Entertainment System layout and found longer game titles are truncated. For example:
Donkey Kong Country 3 : Dixie Kong's Double Trouble!
This is displayed as:
Donkey Kong Country 3 : Dixie Kong's Double Troubl
I edited layout.nut:
title_b = fe.add_text("[Title]", x_title_b, fly*0.92, flw*0.4, flh*0.1);
title = fe.add_text("[Title]", x_title, fly*0.92, flw*0.4, flh*0.1);
Changed flw*0.4 to flw*0.5:
title_b = fe.add_text("[Title]", x_title_b, fly*0.92, flw*0.5, flh*0.1);
title = fe.add_text("[Title]", x_title, fly*0.92, flw*0.5, flh*0.1);
Now the full title is displayed. Is this the correct approach? Any concerns with this change?