From 3707a86f4263212cb58fc1e06cf8b20d4668e8c0 Mon Sep 17 00:00:00 2001 From: tildearrow Date: Thu, 14 Apr 2022 01:51:21 -0500 Subject: [PATCH] VERA: 4x the volume --- src/engine/platform/vera.cpp | 4 ++++ src/engine/platform/vera.h | 1 + 2 files changed, 5 insertions(+) diff --git a/src/engine/platform/vera.cpp b/src/engine/platform/vera.cpp index 77f5c8050..68c214ddb 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 a3773cccb..2b47f99a7 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);