Reorganize RageDisplay

Add Direct3D renderer (separate project configuration)
Add Xbox project config (doesn't yet compile)
This commit is contained in:
Chris Danford
2003-05-22 05:28:37 +00:00
parent 8f87e27031
commit 02016ae442
35 changed files with 6051 additions and 1498 deletions
+2 -2
View File
@@ -123,7 +123,7 @@ RageLog::~RageLog()
void RageLog::ShowConsole()
{
#if defined(WIN32)
#if defined(WIN32) || !defined(_XBOX)
// create a new console window and attach standard handles
AllocConsole();
freopen("CONOUT$","wb",stdout);
@@ -133,7 +133,7 @@ void RageLog::ShowConsole()
void RageLog::HideConsole()
{
#if defined(WIN32)
#if defined(WIN32) || !defined(_XBOX)
FreeConsole();
#endif
}