mirror of
https://github.com/glfw/glfw.git
synced 2025-07-29 11:00:04 +00:00
win32_window: fix case scope
This commit is contained in:
parent
f383cc8289
commit
ae9bb3e9b9
@ -715,7 +715,7 @@ static LRESULT CALLBACK windowProc(HWND hWnd, UINT uMsg,
|
||||
// TODO: Restore vsync if compositing was disabled
|
||||
break;
|
||||
}
|
||||
case WM_DROPFILES:
|
||||
case WM_DROPFILES:{
|
||||
|
||||
// DragQueryFile() takes a LPWSTR for the name so we need a TCHAR string
|
||||
TCHAR szName[MAX_PATH];
|
||||
@ -753,7 +753,8 @@ static LRESULT CALLBACK windowProc(HWND hWnd, UINT uMsg,
|
||||
_glfwInputDrop(window,_glfw.win32.dropString);
|
||||
|
||||
DragFinish(hDrop);
|
||||
break;
|
||||
}
|
||||
break;
|
||||
}
|
||||
|
||||
return DefWindowProc(hWnd, uMsg, wParam, lParam);
|
||||
|
Loading…
Reference in New Issue
Block a user