Collection of miscellaneous PAL changes required for restricted platforms. (#6482)

Signed-off-by: bosnichd <bosnichd@amazon.com>
This commit is contained in:
bosnichd
2021-12-20 08:15:10 -07:00
committed by GitHub
parent fea4d0e6b1
commit d5b9cf10cf
25 changed files with 139 additions and 36 deletions
@@ -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*)
{
}