diff options
| author | 2014-06-01 11:49:58 -0400 | |
|---|---|---|
| committer | 2014-06-01 11:49:58 -0400 | |
| commit | 00adbc7817194183dbea95ddfdb8678a5571c799 (patch) | |
| tree | 40306165e2c7cddd978ecd0864d225c60f609270 /src/common/log_manager.h | |
| parent | log: updated GenericLog __attribute__ for newly added parameter (diff) | |
| download | yuzu-00adbc7817194183dbea95ddfdb8678a5571c799.tar.gz yuzu-00adbc7817194183dbea95ddfdb8678a5571c799.tar.xz yuzu-00adbc7817194183dbea95ddfdb8678a5571c799.zip | |
log: updated MAX_LOGLEVEL to use correct log level enum type
Diffstat (limited to 'src/common/log_manager.h')
| -rw-r--r-- | src/common/log_manager.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/log_manager.h b/src/common/log_manager.h index 3e238dfa7..6d3d7c7ff 100644 --- a/src/common/log_manager.h +++ b/src/common/log_manager.h | |||
| @@ -97,7 +97,7 @@ private: | |||
| 97 | ~LogManager(); | 97 | ~LogManager(); |
| 98 | public: | 98 | public: |
| 99 | 99 | ||
| 100 | static u32 GetMaxLevel() { return MAX_LOGLEVEL; } | 100 | static u32 GetMaxLevel() { return LogTypes::MAX_LOGLEVEL; } |
| 101 | 101 | ||
| 102 | void Log(LogTypes::LOG_LEVELS level, LogTypes::LOG_TYPE type, const char* file, int line, | 102 | void Log(LogTypes::LOG_LEVELS level, LogTypes::LOG_TYPE type, const char* file, int line, |
| 103 | const char* function, const char *fmt, va_list args); | 103 | const char* function, const char *fmt, va_list args); |