Browse Source

Never commit before compiling.

tickets/19/19/1
rarified 4 years ago
parent
commit
d004a68bb4
  1. 2
      Sources/Plasma/PubUtilLib/plGImage/plFont.cpp

2
Sources/Plasma/PubUtilLib/plGImage/plFont.cpp

@ -470,7 +470,7 @@ void plFont::IRenderString( plMipmap *mip, UInt16 x, UInt16 y, const wchar_t *st
if (fCharacters.Count() <= ((UInt16)string[i] - fFirstChar)) {
UInt16 w = wctob(string[0]);
if (w != EOF && (w - fFirstChar) <= fCharacters.Count())
ch = (fCharacters[w - fFirstChar]);
charToDraw = &(fCharacters[w - fFirstChar]);
} else {
charToDraw = &(fCharacters[(UInt16)string[i] - fFirstChar]);
}

Loading…
Cancel
Save