mirror of
https://github.com/libretro/RetroArch.git
synced 2025-04-02 10:51:52 -04:00
Fix MSVC error
This commit is contained in:
parent
989359479c
commit
f60b3ec7a1
1 changed files with 1 additions and 2 deletions
|
@ -953,8 +953,7 @@ static LRESULT CALLBACK wnd_proc_common(
|
|||
break;
|
||||
case WM_GETMINMAXINFO:
|
||||
{
|
||||
MINMAXINFO FAR *lpMinMaxInfo;
|
||||
lpMinMaxInfo = (MINMAXINFO FAR *)lparam;
|
||||
MINMAXINFO FAR *lpMinMaxInfo = (MINMAXINFO FAR *)lparam;
|
||||
settings_t *settings = config_get_ptr();
|
||||
unsigned min_width = MIN_WIDTH;
|
||||
unsigned min_height = MIN_HEIGHT;
|
||||
|
|
Loading…
Add table
Reference in a new issue