1
0
mirror of https://github.com/doitsujin/dxvk.git synced 2025-02-27 13:54:16 +01:00

[hud] Fix letter spacing

This commit is contained in:
Philip Rebohle 2019-12-13 12:17:15 +01:00
parent 7a18cb1227
commit 5da27a92f5
No known key found for this signature in database
GPG Key ID: C8CC613427A31C99

View File

@ -68,7 +68,7 @@ namespace dxvk::hud {
sizeFactor * static_cast<float>(glyph.h) }; sizeFactor * static_cast<float>(glyph.h) };
const HudPos origin = { const HudPos origin = {
pos.x + sizeFactor * static_cast<float>(glyph.originX), pos.x - sizeFactor * static_cast<float>(glyph.originX),
pos.y - sizeFactor * static_cast<float>(glyph.originY) }; pos.y - sizeFactor * static_cast<float>(glyph.originY) };
const HudPos posTl = { origin.x, origin.y }; const HudPos posTl = { origin.x, origin.y };