You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
open the in game backspace menu will cause some original UI disappear (like scores)
this is caused by not backup/restore the texture and viewport after rendering.
it's supposed to add the backup/restore of rendering context in thprac_gui_impl_dx8.cpp
like g_pd3dDevice->GetTexture(0, &g_pOrigTexture) g_pd3dDevice->GetViewport(&g_pOrigViewPort)
and g_pd3dDevice->SetTexture(0, g_pOrigTexture); g_pd3dDevice->SetViewport(&g_pOrigViewPort);
The text was updated successfully, but these errors were encountered:
open the in game backspace menu will cause some original UI disappear (like scores)
this is caused by not backup/restore the texture and viewport after rendering.
it's supposed to add the backup/restore of rendering context in thprac_gui_impl_dx8.cpp
like
g_pd3dDevice->GetTexture(0, &g_pOrigTexture) g_pd3dDevice->GetViewport(&g_pOrigViewPort)
and
g_pd3dDevice->SetTexture(0, g_pOrigTexture); g_pd3dDevice->SetViewport(&g_pOrigViewPort);
The text was updated successfully, but these errors were encountered: