diff --git a/src/v_font.cpp b/src/v_font.cpp index 68422cd74..309f8d560 100644 --- a/src/v_font.cpp +++ b/src/v_font.cpp @@ -2666,7 +2666,7 @@ EColorRange V_ParseFontColor (const uint8_t *&color_value, int normalcolor, int } else // Incomplete! { - color_value = ch - (*ch == '\0'); + color_value = ch - (newcolor == '\0'); return CR_UNDEFINED; } color_value = ch; @@ -2772,4 +2772,4 @@ DEFINE_ACTION_FUNCTION(FFont, GetCursor) { PARAM_SELF_STRUCT_PROLOGUE(FFont); ACTION_RETURN_STRING(FString(self->GetCursor())); -} \ No newline at end of file +}