mirror of
https://github.com/tribes2/engine.git
synced 2026-01-20 03:34:48 +00:00
24 lines
519 B
C++
24 lines
519 B
C++
//-----------------------------------------------------------------------------
|
|
// V12 Engine
|
|
//
|
|
// Copyright (c) 2001 GarageGames.Com
|
|
// Portions Copyright (c) 2001 by Sierra Online, Inc.
|
|
//-----------------------------------------------------------------------------
|
|
|
|
#include "PlatformPPC/platformPPC.h"
|
|
|
|
void Platform::postQuitMessage(const U32 in_quitVal)
|
|
{
|
|
ppcState.quit = true;
|
|
}
|
|
|
|
void Platform::debugBreak()
|
|
{
|
|
//DebugBreak();
|
|
}
|
|
|
|
void Platform::forceShutdown(S32 returnValue)
|
|
{
|
|
//exit(returnValue);
|
|
}
|