mirror of
https://github.com/halpz/re3.git
synced 2025-07-25 12:12:47 +00:00
sync with upstream
This commit is contained in:
@ -374,7 +374,11 @@ CFont::PrintChar(float x, float y, wchar c)
|
||||
if(Details.style == FONT_BANK || Details.style == FONT_STANDARD){
|
||||
if (bDontPrint) return;
|
||||
if (RenderState.slant == 0.0f) {
|
||||
#ifdef FIX_BUGS
|
||||
if (c < 192) {
|
||||
#else
|
||||
if (c < 193) {
|
||||
#endif
|
||||
CSprite2d::AddToBuffer(
|
||||
CRect(x, y,
|
||||
x + 32.0f * RenderState.scaleX * 1.0f,
|
||||
@ -390,9 +394,9 @@ CFont::PrintChar(float x, float y, wchar c)
|
||||
x + 32.0f * RenderState.scaleX * 1.0f,
|
||||
y + 33.0f * RenderState.scaleY * 0.5f),
|
||||
RenderState.color,
|
||||
xoff / 16.0f, yoff / 12.8f,
|
||||
(xoff + 1.0f) / 16.0f - 0.001f, yoff / 12.8f - 0.017f,
|
||||
xoff / 16.0f, (yoff + 1.0f) / 12.8f,
|
||||
xoff / 16.0f, yoff / 12.8f + 0.0021f,
|
||||
(xoff + 1.0f) / 16.0f - 0.001f, yoff / 12.8f + 0.0021f,
|
||||
xoff / 16.0f, (yoff + 1.0f) / 12.8f - 0.017f,
|
||||
(xoff + 1.0f) / 16.0f - 0.001f, (yoff + 1.0f) / 12.8f - 0.017f);
|
||||
}
|
||||
} else
|
||||
|
Reference in New Issue
Block a user