1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-10 04:22:20 +02:00

Dynamically load SDL2.dll

This commit is contained in:
Brian Fiete 2022-11-17 07:29:50 -08:00
parent 82e06c4582
commit 7293fed046
4 changed files with 98 additions and 24 deletions

View file

@ -1630,6 +1630,9 @@ void WinBFWindow::GetPlacement(int* normX, int* normY, int* normWidth, int* norm
*normHeight = wndPlacement.rcNormalPosition.bottom - wndPlacement.rcNormalPosition.top;
switch (wndPlacement.showCmd)
{
case SW_SHOWNORMAL:
*showKind = ShowKind_ShowNormal;
break;
case SW_SHOWMINIMIZED:
*showKind = ShowKind_ShowMinimized;
break;