2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-12-09 15:47:46 +00:00

Remove remaining unused vars from TestGameView

This commit is contained in:
2017-09-14 05:42:20 -07:00
parent 001125429f
commit b28769977f
3 changed files with 6 additions and 16 deletions

View File

@@ -25,10 +25,9 @@ using YAMLNode = athena::io::YAMLNode;
namespace urde
{
void ViewManager::BuildTestPART(urde::IObjectStore& objStore)
void ViewManager::BuildTestPART()
{
TLockedToken<CTexture> xrayPalette = objStore.GetObj("TXTR_XRayPalette");
m_testGameView.reset(new TestGameView(*this, m_viewResources, *m_rootView, xrayPalette));
m_testGameView.reset(new TestGameView(*this, m_viewResources, *m_rootView));
m_rootView->accessContentViews().clear();
m_rootView->accessContentViews().push_back(m_testGameView.get());
@@ -50,7 +49,6 @@ void ViewManager::TestGameView::draw(boo::IGraphicsCommandQueue* gfxQ)
{
gfxQ->clearTarget(true, true);
m_vm.m_projManager.mainDraw();
++m_frame;
}
specter::View* ViewManager::BuildSpaceViews()