* SoundSystemWindows: Fix low volume on 3D Sounds, remove useless calloc. (#27)

* SoundSystemWindows: Fix low volume on 3D Sounds, remove useless calloc.

Mojang made the volume on 3D sounds very quiet so i multiplied it by 5 and it seems to match better to the 2D sounds now. The calloc crap was not needed i dont know what i was thinking there

* Update minecraftcpp.vcxproj -- undoes an accidental change
This commit is contained in:
f
2023-08-05 17:49:09 +02:00
committed by GitHub
parent 9d88bfb962
commit eaa90a6f95
2 changed files with 27 additions and 35 deletions

View File

@@ -39,7 +39,6 @@ public:
private:
bool m_available = false;
IDirectSound8* m_directsound;
IDirectSoundBuffer* m_primarybuffer;
LPDIRECTSOUND3DLISTENER8* m_listener;
std::vector<LPDIRECTSOUNDBUFFER*> m_buffers;
LPDIRECTSOUND3DLISTENER8 m_listener;
std::vector<LPDIRECTSOUNDBUFFER> m_buffers;
};