namespace

This commit is contained in:
Glenn Maynard
2006-01-24 03:53:17 +00:00
parent 8ce8c3f1cc
commit 86aebecbdb
4 changed files with 12 additions and 9 deletions
+3 -3
View File
@@ -118,7 +118,7 @@ static void CheckFocus()
}
}
void GameLoop()
void GameLoop::GameLoop()
{
/* People may want to do something else while songs are loading, so do
* this after loading songs. */
@@ -257,13 +257,13 @@ int ConcurrentRenderer::StartRenderThread( void *p )
return 0;
}
void StartConcurrentRendering()
void GameLoop::StartConcurrentRendering()
{
ASSERT( g_pConcurrentRenderer == NULL );
g_pConcurrentRenderer = new ConcurrentRenderer;
}
void FinishConcurrentRendering()
void GameLoop::FinishConcurrentRendering()
{
SAFE_DELETE( g_pConcurrentRenderer );
}