post merge fixes
This commit is contained in:
parent
60a5ddc79d
commit
40276391af
|
@ -207,8 +207,7 @@ bool GameState::Render()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifdef _DEBUG
|
#ifdef _DEBUG //RB DEBUG render wire frame
|
||||||
//RB DEBUG render wire frame
|
|
||||||
if(this->renderWhireframe)
|
if(this->renderWhireframe)
|
||||||
{
|
{
|
||||||
Oyster::Graphics::API::StartRenderWireFrame();
|
Oyster::Graphics::API::StartRenderWireFrame();
|
||||||
|
@ -248,8 +247,7 @@ bool GameState::Render()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
//!RB DEBUG
|
#endif //!RB DEBUG
|
||||||
#endif
|
|
||||||
|
|
||||||
Oyster::Graphics::API::StartGuiRender();
|
Oyster::Graphics::API::StartGuiRender();
|
||||||
// render gui elemnts
|
// render gui elemnts
|
||||||
|
@ -372,7 +370,7 @@ void GameState::ReadKeyInput()
|
||||||
#endif // !DEGUG KEYS
|
#endif // !DEGUG KEYS
|
||||||
|
|
||||||
// toggle wire frame render
|
// toggle wire frame render
|
||||||
if( this->privData->input->IsKeyPressed(DIK_TAB) )
|
if( this->privData->keyboardInput->IsKeyDown(::Input::Enum::SAKI_Tab) )
|
||||||
{
|
{
|
||||||
if( !this->key_showStats )
|
if( !this->key_showStats )
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue