Skip to content

Commit

Permalink
changes this callback back to BOOL so it works again. (#2378)
Browse files Browse the repository at this point in the history
  • Loading branch information
Squall-Leonhart committed Jul 27, 2023
1 parent bbe603c commit 822b75c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Source/Project64-rsp/Main.cpp
Expand Up @@ -30,7 +30,7 @@
void ClearAllx86Code(void);
void ProcessMenuItem(int ID);
#ifdef _WIN32
bool CALLBACK CompilerDlgProc(HWND hDlg, UINT uMsg, WPARAM wParam, LPARAM lParam);
BOOL CALLBACK CompilerDlgProc(HWND hDlg, UINT uMsg, WPARAM wParam, LPARAM lParam);
HMENU hRSPMenu = NULL;
#endif

Expand Down Expand Up @@ -617,7 +617,7 @@ static bool GetBooleanCheck(HWND hDlg, DWORD DialogID)
return (IsDlgButtonChecked(hDlg, DialogID) == BST_CHECKED) ? true : false;
}

bool CALLBACK CompilerDlgProc(HWND hDlg, UINT uMsg, WPARAM wParam, LPARAM /*lParam*/)
BOOL CALLBACK CompilerDlgProc(HWND hDlg, UINT uMsg, WPARAM wParam, LPARAM /*lParam*/)
{
char Buffer[256];

Expand Down

0 comments on commit 822b75c

Please sign in to comment.