FREESCAPE: Fix warning

This commit is contained in:
Eugene Sandulenko 2023-01-25 12:50:15 +01:00 committed by neuromancer
parent fa9667ab91
commit 9d4f1a8427

View file

@ -80,7 +80,7 @@ struct soundFx {
class SizedPCSpeaker : public Audio::PCSpeaker { class SizedPCSpeaker : public Audio::PCSpeaker {
public: public:
bool endOfStream() { return (_commandQueue->size() == 0); } bool endOfStream() const override { return (_commandQueue->size() == 0); }
}; };
class FreescapeEngine : public Engine { class FreescapeEngine : public Engine {