mirror of
https://github.com/Gericom/GBARunner3.git
synced 2025-06-19 03:35:32 -04:00
Fixed a typo in color profiles
This commit is contained in:
parent
c98374aadf
commit
1e57e8d025
@ -22,7 +22,7 @@ enum class GbaColorCorrection
|
|||||||
Usg001,
|
Usg001,
|
||||||
|
|
||||||
/// @brief Color correction is applied that resembles the PSP-01g screen.
|
/// @brief Color correction is applied that resembles the PSP-01g screen.
|
||||||
PspO1g,
|
Psp01g,
|
||||||
|
|
||||||
/// @brief Color correction is applied that resembles the Nintendo Switch Classics GBA shader.
|
/// @brief Color correction is applied that resembles the Nintendo Switch Classics GBA shader.
|
||||||
NswIps,
|
NswIps,
|
||||||
|
@ -86,7 +86,7 @@ static bool tryParseGbaColorCorrection(const char* gbaColorCorrectionString, Gba
|
|||||||
else if (!strcasecmp(gbaColorCorrectionString, ENUM_STRING_GBA_COLOR_CORRECTION_USG_001))
|
else if (!strcasecmp(gbaColorCorrectionString, ENUM_STRING_GBA_COLOR_CORRECTION_USG_001))
|
||||||
gbaColorCorrection = GbaColorCorrection::Usg001;
|
gbaColorCorrection = GbaColorCorrection::Usg001;
|
||||||
else if (!strcasecmp(gbaColorCorrectionString, ENUM_STRING_GBA_COLOR_CORRECTION_PSP_01G))
|
else if (!strcasecmp(gbaColorCorrectionString, ENUM_STRING_GBA_COLOR_CORRECTION_PSP_01G))
|
||||||
gbaColorCorrection = GbaColorCorrection::PspO1g;
|
gbaColorCorrection = GbaColorCorrection::Psp01g;
|
||||||
else if (!strcasecmp(gbaColorCorrectionString, ENUM_STRING_GBA_COLOR_CORRECTION_NSO_IPS))
|
else if (!strcasecmp(gbaColorCorrectionString, ENUM_STRING_GBA_COLOR_CORRECTION_NSO_IPS))
|
||||||
gbaColorCorrection = GbaColorCorrection::NswIps;
|
gbaColorCorrection = GbaColorCorrection::NswIps;
|
||||||
else if (!strcasecmp(gbaColorCorrectionString, ENUM_STRING_GBA_COLOR_CORRECTION_NSO_OLED))
|
else if (!strcasecmp(gbaColorCorrectionString, ENUM_STRING_GBA_COLOR_CORRECTION_NSO_OLED))
|
||||||
|
@ -76,7 +76,7 @@ constexpr inline ColorProfile Usg001 =
|
|||||||
};
|
};
|
||||||
|
|
||||||
// libretro PSP 1000 color (sRGB).
|
// libretro PSP 1000 color (sRGB).
|
||||||
constexpr inline ColorProfile PspO1g =
|
constexpr inline ColorProfile Psp01g =
|
||||||
{
|
{
|
||||||
{
|
{
|
||||||
{ 835, 160, -130 },
|
{ 835, 160, -130 },
|
||||||
|
Loading…
Reference in New Issue
Block a user