Removing stuff pertaining to demo modes and trials, as they're redundant now.

This commit is contained in:
Areloch 2015-07-01 23:36:56 -05:00
parent d89c3b7c6f
commit 0d6768d57b
25 changed files with 355 additions and 846 deletions

View file

@ -55,10 +55,6 @@ bool GameTSCtrl::onAdd()
if ( !Parent::onAdd() )
return false;
#ifdef TORQUE_DEMO_WATERMARK
mWatermark.init();
#endif
return true;
}
@ -172,10 +168,6 @@ void GameTSCtrl::onRender(Point2I offset, const RectI &updateRect)
if(!skipRender || true)
Parent::onRender(offset, updateRect);
#ifdef TORQUE_DEMO_WATERMARK
mWatermark.render(getExtent());
#endif
}
//--------------------------------------------------------------------------