Collection of miscellaneous PAL changes required for restricted platforms. (#6482)
Signed-off-by: bosnichd <bosnichd@amazon.com>
This commit is contained in:
@@ -15,7 +15,7 @@
|
||||
#include <CryCommon/CryListenerSet.h>
|
||||
#include <CryCommon/StaticInstance.h>
|
||||
|
||||
#if !defined(RELEASE) || defined(RELEASE_LOGGING) || defined(ENABLE_PROFILING_CODE)
|
||||
#if (!defined(RELEASE) || defined(RELEASE_LOGGING) || defined(ENABLE_PROFILING_CODE)) && !defined(AZ_LEGACY_CRYSYSTEM_TRAIT_REMOTE_CONSOLE_UNSUPPORTED)
|
||||
#define USE_REMOTE_CONSOLE
|
||||
|
||||
struct SRemoteServer;
|
||||
|
||||
@@ -41,17 +41,17 @@ void CRemoteConsole::Stop()
|
||||
}
|
||||
|
||||
/////////////////////////////////////////////////////////////////////////////////////////////
|
||||
void CRemoteConsole::AddLogMessage(const char* log)
|
||||
void CRemoteConsole::AddLogMessage(const char*)
|
||||
{
|
||||
}
|
||||
|
||||
/////////////////////////////////////////////////////////////////////////////////////////////
|
||||
void CRemoteConsole::AddLogWarning(const char* log)
|
||||
void CRemoteConsole::AddLogWarning(const char*)
|
||||
{
|
||||
}
|
||||
|
||||
/////////////////////////////////////////////////////////////////////////////////////////////
|
||||
void CRemoteConsole::AddLogError(const char* log)
|
||||
void CRemoteConsole::AddLogError(const char*)
|
||||
{
|
||||
}
|
||||
|
||||
@@ -61,11 +61,11 @@ void CRemoteConsole::Update()
|
||||
}
|
||||
|
||||
/////////////////////////////////////////////////////////////////////////////////////////////
|
||||
void CRemoteConsole::RegisterListener(IRemoteConsoleListener* pListener, const char* name)
|
||||
void CRemoteConsole::RegisterListener(IRemoteConsoleListener*, const char*)
|
||||
{
|
||||
}
|
||||
|
||||
/////////////////////////////////////////////////////////////////////////////////////////////
|
||||
void CRemoteConsole::UnregisterListener(IRemoteConsoleListener* pListener)
|
||||
void CRemoteConsole::UnregisterListener(IRemoteConsoleListener*)
|
||||
{
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user