diff options
author | bunnei <ericbunnie@gmail.com> | 2014-05-06 17:18:20 -0400 |
---|---|---|
committer | bunnei <ericbunnie@gmail.com> | 2014-05-06 17:18:20 -0400 |
commit | 9db26df05fddd08575be459a12842a96e9f2ddc9 (patch) | |
tree | 5b07d6cfd801519dba7b39673d7e8d05904034e6 /src/common/log.h | |
parent | e3ee3e441b271a4d2b4df8a318275ce1dcc82fa0 (diff) |
- added better SVC logging
- added stubs for GetResourceLimit and GetResourceLimitCurrentValues SVCs
Diffstat (limited to 'src/common/log.h')
-rw-r--r-- | src/common/log.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/common/log.h b/src/common/log.h index 02db8bd55..ffc727a27 100644 --- a/src/common/log.h +++ b/src/common/log.h @@ -54,7 +54,7 @@ enum LOG_TYPE { WII_IPC_FILEIO, WII_IPC_HID, WII_IPC_HLE, - WII_IPC_NET, + SVC, NDMA, HLE, RENDER, @@ -88,10 +88,10 @@ void GenericLog(LOGTYPES_LEVELS level, LOGTYPES_TYPE type, ; #if defined LOGGING || defined _DEBUG || defined DEBUGFAST -#define MAX_LOGLEVEL DEBUG_LEVEL +#define MAX_LOGLEVEL LogTypes::LDEBUG #else #ifndef MAX_LOGLEVEL -#define MAX_LOGLEVEL WARNING_LEVEL +#define MAX_LOGLEVEL LogTypes::LWARNING #endif // loglevel #endif // logging |