diff options
author | withmorten <morten.with@gmail.com> | 2020-11-15 22:08:40 +0100 |
---|---|---|
committer | withmorten <morten.with@gmail.com> | 2020-11-15 22:08:40 +0100 |
commit | 0669df763c5e50d506ee0a57febe993d53543447 (patch) | |
tree | 7c4f7457a98dee5d6ebbc10179f4ce6d9f9e95cb /src/core/Game.cpp | |
parent | revert frontend changes for invertlook4pad (diff) | |
parent | Make collision code placement more like original (+ small fixes) (diff) | |
download | re3-0669df763c5e50d506ee0a57febe993d53543447.tar re3-0669df763c5e50d506ee0a57febe993d53543447.tar.gz re3-0669df763c5e50d506ee0a57febe993d53543447.tar.bz2 re3-0669df763c5e50d506ee0a57febe993d53543447.tar.lz re3-0669df763c5e50d506ee0a57febe993d53543447.tar.xz re3-0669df763c5e50d506ee0a57febe993d53543447.tar.zst re3-0669df763c5e50d506ee0a57febe993d53543447.zip |
Diffstat (limited to '')
-rw-r--r-- | src/core/Game.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/core/Game.cpp b/src/core/Game.cpp index 83c75d91..f7589d2b 100644 --- a/src/core/Game.cpp +++ b/src/core/Game.cpp @@ -128,7 +128,7 @@ void MessageScreen(char *msg) CFont::SetFontStyle(FONT_BANK); CFont::SetBackgroundOff(); - CFont::SetWrapx(SCREEN_SCALE_FROM_RIGHT(190.0f)); // 450.0f // unused + CFont::SetWrapx(SCREEN_SCALE_FROM_RIGHT(190.0f)); // 450.0f CFont::SetScale(SCREEN_SCALE_X(1.0f), SCREEN_SCALE_Y(1.0f)); CFont::SetCentreOn(); CFont::SetCentreSize(SCREEN_SCALE_X(450.0f)); // 450.0f @@ -734,10 +734,10 @@ void CGame::InitialiseWhenRestarting(void) //CFont::SetFontStyle(?); CFont::SetBackgroundOff(); - CFont::SetWrapx(SCREEN_SCALE_FROM_RIGHT(160.0f)); // 480.0f // unused + CFont::SetWrapx(SCREEN_SCALE_FROM_RIGHT(160.0f)); // 480.0f CFont::SetScale(SCREEN_SCALE_X(1.0f), SCREEN_SCALE_Y(1.0f)); CFont::SetCentreOn(); - CFont::SetCentreSize(SCREEN_SCALE_X(480.0f)); // 480.0f + CFont::SetCentreSize(SCREEN_SCALE_X(480.0f)); CFont::SetJustifyOff(); CFont::SetColor(CRGBA(255, 255, 255, 255)); CFont::SetBackGroundOnlyTextOff(); |