Reorganize RageDisplay
Add Direct3D renderer (separate project configuration) Add Xbox project config (doesn't yet compile)
This commit is contained in:
@@ -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
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user