From 8145dfbdce18b6692000dfbaaa91f822954a09ef Mon Sep 17 00:00:00 2001 From: zeromus Date: Fri, 8 Oct 2021 22:20:41 -0400 Subject: [PATCH] neshawk - remove misleading non-functional function for setting volume (don't worry the feature is still there, this was just an unused method) --- src/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/NES.Core.cs | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/NES.Core.cs b/src/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/NES.Core.cs index 511bdeb708..ca7d0af5db 100644 --- a/src/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/NES.Core.cs +++ b/src/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/NES.Core.cs @@ -64,9 +64,6 @@ namespace BizHawk.Emulation.Cores.Nintendo.NES private DisplayType _display_type = DisplayType.NTSC; - //Sound config - public void SetVol1(int v) { apu.m_vol = v; } - private BlipBuffer blip = new BlipBuffer(4096); private const int blipbuffsize = 4096;