mirror of
https://gitlab.com/GaryOderNichts/re3-wiiu.git
synced 2024-11-23 01:29:16 +01:00
Merge remote-tracking branch 'upstream/master'
This commit is contained in:
commit
a3b83a5d2f
@ -4157,12 +4157,22 @@ CMenuManager::ProcessButtonPresses(void)
|
||||
DoSettingsBeforeStartingAGame();
|
||||
return;
|
||||
}
|
||||
if (glfwGetKey(PSGLOBAL(window), GLFW_KEY_D) == GLFW_PRESS) {
|
||||
scriptToLoad = 2;
|
||||
DoSettingsBeforeStartingAGame();
|
||||
return;
|
||||
}
|
||||
#elif defined _WIN32
|
||||
if (GetAsyncKeyState('R') & 0x8000) {
|
||||
scriptToLoad = 1;
|
||||
DoSettingsBeforeStartingAGame();
|
||||
return;
|
||||
}
|
||||
if (GetAsyncKeyState('D') & 0x8000) {
|
||||
scriptToLoad = 2;
|
||||
DoSettingsBeforeStartingAGame();
|
||||
return;
|
||||
}
|
||||
#endif
|
||||
}
|
||||
#endif
|
||||
|
@ -216,6 +216,7 @@ CRenderer::RenderOneNonRoad(CEntity *e)
|
||||
e->Render();
|
||||
|
||||
if(e->IsVehicle()){
|
||||
BACKFACE_CULLING_OFF;
|
||||
e->bImBeingRendered = true;
|
||||
CVisibilityPlugins::RenderAlphaAtomics();
|
||||
e->bImBeingRendered = false;
|
||||
|
Loading…
Reference in New Issue
Block a user