diff --git a/src/engine/platform/vera.cpp b/src/engine/platform/vera.cpp index 77f5c805..68c214dd 100644 --- a/src/engine/platform/vera.cpp +++ b/src/engine/platform/vera.cpp @@ -372,6 +372,10 @@ void DivPlatformVERA::muteChannel(int ch, bool mute) { } } +float DivPlatformVERA::getPostAmp() { + return 4.0f; +} + bool DivPlatformVERA::isStereo() { return true; } diff --git a/src/engine/platform/vera.h b/src/engine/platform/vera.h index a3773ccc..2b47f99a 100644 --- a/src/engine/platform/vera.h +++ b/src/engine/platform/vera.h @@ -66,6 +66,7 @@ class DivPlatformVERA: public DivDispatch { void tick(); void muteChannel(int ch, bool mute); void notifyInsDeletion(void* ins); + float getPostAmp(); bool isStereo(); void poke(unsigned int addr, unsigned short val); void poke(std::vector& wlist);