Skip to content

Commit

Permalink
Rename SoundPlayer::Init to SoundPlayer::InitializeDSound
Browse files Browse the repository at this point in the history
  • Loading branch information
roblabla committed Dec 2, 2023
1 parent 70f6d4c commit 4beb55a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/SoundPlayer.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#include "SoundPlayer.hpp"

void SoundPlayer::Init(HWND window)
void SoundPlayer::InitializeDSound(HWND window)
{
}

Expand Down
2 changes: 1 addition & 1 deletion src/SoundPlayer.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

struct SoundPlayer
{
void Init(HWND window);
void InitializeDSound(HWND window);
ZunResult InitSoundBuffers();
void Release(void);
};
Expand Down
2 changes: 1 addition & 1 deletion src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -532,7 +532,7 @@ int __stdcall WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdL
return 1;
}

g_SoundPlayer.Init(g_GameWindow.window);
g_SoundPlayer.InitializeDSound(g_GameWindow.window);
GetJoystickCaps();
ResetKeyboard();

Expand Down

0 comments on commit 4beb55a

Please sign in to comment.