FREESCAPE: Fix warning
This commit is contained in:
parent
fa9667ab91
commit
9d4f1a8427
1 changed files with 1 additions and 1 deletions
|
@ -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 {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue