[Scummvm-git-logs] scummvm master -> 4edbabcbe73e8483f5884f1bc1978910e3c17662
sev-
noreply at scummvm.org
Wed Jan 25 11:50:35 UTC 2023
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:
4edbabcbe7 FREESCAPE: Fix warning
Commit: 4edbabcbe73e8483f5884f1bc1978910e3c17662
https://github.com/scummvm/scummvm/commit/4edbabcbe73e8483f5884f1bc1978910e3c17662
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2023-01-25T12:50:15+01:00
Commit Message:
FREESCAPE: Fix warning
Changed paths:
engines/freescape/freescape.h
diff --git a/engines/freescape/freescape.h b/engines/freescape/freescape.h
index a6889f63ef5..00fbbc59573 100644
--- a/engines/freescape/freescape.h
+++ b/engines/freescape/freescape.h
@@ -80,7 +80,7 @@ struct soundFx {
class SizedPCSpeaker : public Audio::PCSpeaker {
public:
- bool endOfStream() { return (_commandQueue->size() == 0); }
+ bool endOfStream() const override { return (_commandQueue->size() == 0); }
};
class FreescapeEngine : public Engine {
More information about the Scummvm-git-logs
mailing list