[Scummvm-git-logs] scummvm master -> e07c84bafd3435fa93550d8e311080adba1a9267
digitall
547637+digitall at users.noreply.github.com
Fri Aug 20 13:54:46 UTC 2021
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:
e07c84bafd KYRA: Fix Misleading Indent GCC Warning
Commit: e07c84bafd3435fa93550d8e311080adba1a9267
https://github.com/scummvm/scummvm/commit/e07c84bafd3435fa93550d8e311080adba1a9267
Author: D G Turner (digitall at scummvm.org)
Date: 2021-08-20T14:53:59+01:00
Commit Message:
KYRA: Fix Misleading Indent GCC Warning
This is likely to be an extraneous semi-colon mistake as other cases
of this code fragment do not use this form.
Changed paths:
engines/kyra/sequence/sequences_hof.cpp
diff --git a/engines/kyra/sequence/sequences_hof.cpp b/engines/kyra/sequence/sequences_hof.cpp
index fd0662a25e..5ba27c31ad 100644
--- a/engines/kyra/sequence/sequences_hof.cpp
+++ b/engines/kyra/sequence/sequences_hof.cpp
@@ -2139,7 +2139,7 @@ int SeqPlayer_HOF::cbHOF_zanfaun(WSAMovie_v2 *wsaObj, int x, int y, int frm) {
case 26:
if (_vm->gameFlags().isTalkie && !_vm->textEnabled()) {
- while (!(_vm->shouldQuit() || _vm->skipFlag()) && _vm->sound()->voiceIsPlaying());
+ while (!(_vm->shouldQuit() || _vm->skipFlag()) && _vm->sound()->voiceIsPlaying())
delayTicks(1);
} else {
waitForSubTitlesTimeout();
More information about the Scummvm-git-logs
mailing list