mirror of
https://github.com/HarbourMasters/Shipwright.git
synced 2025-08-22 22:33:43 -07:00
fix empty window on direct3d
This commit is contained in:
parent
bede7e003a
commit
05d495c053
1 changed files with 3 additions and 1 deletions
|
@ -281,8 +281,10 @@ static LRESULT CALLBACK gfx_dxgi_wnd_proc(HWND h_wnd, UINT message, WPARAM w_par
|
||||||
else {
|
else {
|
||||||
return DefWindowProcW(h_wnd, message, w_param, l_param);
|
return DefWindowProcW(h_wnd, message, w_param, l_param);
|
||||||
}
|
}
|
||||||
return 0;
|
default:
|
||||||
|
return DefWindowProcW(h_wnd, message, w_param, l_param);
|
||||||
}
|
}
|
||||||
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
void gfx_dxgi_init(const char* game_name, bool start_in_fullscreen) {
|
void gfx_dxgi_init(const char* game_name, bool start_in_fullscreen) {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue