2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-07-04 13:15:52 +00:00

CFontRenderState: Eliminate sign conversion in SetColor()

Same behavior, minus a sign conversion warning.
This commit is contained in:
Lioncash 2020-05-21 01:33:31 -04:00
parent 32a4087f69
commit 6063ec2540

View File

@ -26,7 +26,7 @@ void CFontRenderState::SetColor(EColorType tp, const CTextColor& col) {
case EColorType::Main:
case EColorType::Outline:
case EColorType::Geometry:
x54_colors[int(tp)] = col;
x54_colors[size_t(tp)] = col;
break;
case EColorType::Foreground:
x54_colors[0] = col;