diff options
author | BLooperZ | 2019-12-31 22:20:09 +0200 |
---|---|---|
committer | Eugene Sandulenko | 2020-01-01 00:31:21 +0100 |
commit | f13c76fec9f69ea11581d29eaf20288ec7fd37aa (patch) | |
tree | 8633a770a549ba145fb715923f6e578fd00e09ca /engines | |
parent | cbcb36ac6129c42b9e719dba1505fdac07881cc2 (diff) | |
download | scummvm-rg350-f13c76fec9f69ea11581d29eaf20288ec7fd37aa.tar.gz scummvm-rg350-f13c76fec9f69ea11581d29eaf20288ec7fd37aa.tar.bz2 scummvm-rg350-f13c76fec9f69ea11581d29eaf20288ec7fd37aa.zip |
SCUMM: move comment to more appropriate location
Diffstat (limited to 'engines')
-rw-r--r-- | engines/scumm/string.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/scumm/string.cpp b/engines/scumm/string.cpp index 1c23223605..39ee5b4700 100644 --- a/engines/scumm/string.cpp +++ b/engines/scumm/string.cpp @@ -500,10 +500,10 @@ void ScummEngine::fakeBidiString(char *ltext, bool ignoreVerb) { memset(buff, 0, bufferSize); memset(stack, 0, bufferSize); + // Reverse string on current line (between start and ipos). int sthead = 0; char last = '\0'; for (int j = 0; j < ipos; j++) { - // Reverse string on current line (between start and ipos). char *curr = text + start + ipos - j - 1; // Special cases to preserve original ordering (numbers). if (Common::isDigit(*curr) || |