So for anyone wondering: TY to Deflektor for pointing me in the right direction!
First determine what resolution that AM is running the Theme for Flat Blue.. Flat blue uses this scalar resolution to determine aspect ratio. Inside the LayoutSettings.nut called by the main layout.nut is a section for each item with preset numbers that are applied to the width and height, which basically makes each onscreen item in the theme go along with all the various resolutions and aspect ratios.
1st I manually set my layout.nut test_resolution: I just removed the remarks // from my desired 640x480, I'll try 320x240 on my real arcade CRT tonight...
local layout = LayoutSettings();
local test_resolution = scalar2();
// test_resolution = scalar2(1920,1080);
// test_resolution = scalar2(1366,768);
// test_resolution = scalar2(1360,768);
// test_resolution = scalar2(1024,576);
// test_resolution = scalar2(1920,1200);
// test_resolution = scalar2(1280,768);
// test_resolution = scalar2(800,480);
// test_resolution = scalar2(1600,1280);
// test_resolution = scalar2(1280,1024);
// test_resolution = scalar2(1600,1200);
// test_resolution = scalar2(1024,768);
// test_resolution = scalar2(800,600);
test_resolution = scalar2(640,480);
// test_resolution = scalar2(320,240);
layout.set_layout_dimensions(test_resolution);
layout.initialize();
[/size]
Using the
Then I edited LayoutSettings.nut. In the correct section case, which for me is 3:4 as I am a 4:3 ratio but I have enabled rotate left, which the theme accounts for. If you edit these convert width and convert height settings and nothing happens you may be in the wrong case aspect ratio
settings.sidebar.panel_text_charsize <- (get_lowres_flag()) ? convert_height(13) : convert_height(10);
settings.sidebar.panel_selected_text_charsize <- (get_lowres_flag()) ? convert_height(27) : convert_height(22);
default is (27:20) which gives small text..
On my 1st try I said lets make this half that (13:10) .. Mistake.. text is crazy small.. pic below.. but now I know how to change anything..
Ok lets make them bigger: / one is the size of the selected game, one is the rest of the not selected games (80% increase for non-select, 100% for selected) .
settings.sidebar.panel_text_charsize <- (get_lowres_flag()) ? convert_height(37) : convert_height(28);
settings.sidebar.panel_selected_text_charsize <- (get_lowres_flag()) ? convert_height(54) : convert_height(40);
Ok save in notepad++ and then resave to a zip file since AM doesn't like Flat Blue unzipped..
And you get something like this: