[Scummvm-git-logs] scummvm master -> d3cfd7eef33bba3892b984c144771d3a46db458e
digitall
noreply at scummvm.org
Tue Jun 7 21:13:05 UTC 2022
This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .
Summary:
d3cfd7eef3 AGI: Remove Extra Backslash From French UI Case
Commit: d3cfd7eef33bba3892b984c144771d3a46db458e
https://github.com/scummvm/scummvm/commit/d3cfd7eef33bba3892b984c144771d3a46db458e
Author: D G Turner (digitall at scummvm.org)
Date: 2022-06-07T22:12:54+01:00
Commit Message:
AGI: Remove Extra Backslash From French UI Case
This was causing a GCC compiler warning regarding the unhandled
escape case of \040 i.e. ASCII space in octal.
Changed paths:
engines/agi/systemui.cpp
diff --git a/engines/agi/systemui.cpp b/engines/agi/systemui.cpp
index fc19d7fc09a..cec23be0c32 100644
--- a/engines/agi/systemui.cpp
+++ b/engines/agi/systemui.cpp
@@ -125,7 +125,7 @@ SystemUI::SystemUI(AgiEngine *vm, GfxMgr *gfx, TextMgr *text) {
_textStatusScore = "Score : %v3 sur %v7";
_textStatusSoundOn = "Son : Oui";
_textStatusSoundOff = "Son : Non";
- _textEnterCommand = "Entrer une donn\x82\x65\ :\n\n";
+ _textEnterCommand = "Entrer une donn\x82\x65 :\n\n";
_textPause = " Pause.\n\n\"Entr\x82\x65\" pour jouer.";
_textRestart = "\"Entr\x82\x65\" pour rejouer.\n\"Esc\" pour annuler.";
_textQuit = "\"Entr\x82\x65\" pour quitter.\n\"Esc\" pour annuler.";
More information about the Scummvm-git-logs
mailing list