mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-01 05:38:50 +00:00
Fix an issue with OpenAL not properly using the correct Volume on boot
Proper fix for issue 1886 as well as a fix to OGL fullscreen code that might fix issue 2095 git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@5028 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
parent
fdcfade27a
commit
449b21fd65
6 changed files with 7 additions and 6 deletions
|
@ -495,7 +495,7 @@ void ToggleFullscreen(HWND hParent, bool bForceFull)
|
|||
sscanf(g_Config.cInternalRes, "%dx%d", &w_fs, &h_fs);
|
||||
|
||||
// FullScreen -> Desktop
|
||||
ChangeDisplaySettings(NULL, 0);
|
||||
ChangeDisplaySettings(NULL, CDS_FULLSCREEN);
|
||||
|
||||
DWORD style = WS_OVERLAPPEDWINDOW;
|
||||
RECT rc = {0, 0, w_fs, h_fs};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue