refactor: show the correct 32-bit RTG format used

We switched to BGRA, might be good to show the correct option there, and make it the default
This commit is contained in:
Dimitris Panokostas 2025-01-06 05:50:07 +01:00
parent 1b3833f2e0
commit 7ecf234e5a
No known key found for this signature in database
GPG Key ID: 330156A68E9E0929
2 changed files with 2 additions and 4 deletions

View File

@ -2133,8 +2133,6 @@ void target_fixup_options(struct uae_prefs* p)
if (p->gfx_api < 2)
p->gfx_api = 2;
// Always use these pixel formats, for optimal performance
p->picasso96_modeflags = RGBFF_CLUT | RGBFF_R5G6B5PC | RGBFF_R8G8B8A8;
if (p->gfx_auto_crop)
{
@ -2280,7 +2278,7 @@ void target_default_options(struct uae_prefs* p, const int type)
//p->automount_removabledrives = 0;
p->automount_cddrives = true;
//p->automount_netdrives = 0;
p->picasso96_modeflags = RGBFF_CLUT | RGBFF_R5G6B5PC | RGBFF_R8G8B8A8;
p->picasso96_modeflags = RGBFF_CLUT | RGBFF_R5G6B5PC | RGBFF_B8G8R8A8;
//p->filesystem_mangle_reserved_names = true;
}

View File

@ -26,7 +26,7 @@ static gcn::StringListModel rtg_aspectratios_list(rtg_aspectratios);
static const std::vector<std::string> rtg_16bit_modes = { "(15/16bit)", "All", "R5G6B5PC (*)", "R5G5B5PC", "R5G6B5", "R5G5B5", "B5G6R5PC", "B5G5R5PC" };
static gcn::StringListModel rtg_16bit_modes_list(rtg_16bit_modes);
static const std::vector<std::string> rtg_32bit_modes = { "(32bit)", "All", "A8R8G8B8", "A8B8G8R8", "R8G8B8A8 (*)", "B8G8R8A8" };
static const std::vector<std::string> rtg_32bit_modes = { "(32bit)", "All", "A8R8G8B8", "A8B8G8R8", "R8G8B8A8", "B8G8R8A8 (*)" };
static gcn::StringListModel rtg_32bit_modes_list(rtg_32bit_modes);