diff options
| author | bushing <bushing@gmail.com> | 2008-12-08 09:56:05 +0000 |
|---|---|---|
| committer | bushing <bushing@gmail.com> | 2008-12-08 09:56:05 +0000 |
| commit | d26dabd3b9ea1d3d9a67b7442931fcaae16fed56 (patch) | |
| tree | 5a4bbf13d66742b1444f1163830ccb58d9e277fd | |
| parent | cda50a3a826d695b8afffafbf8ef155ee8eb61e3 (diff) | |
redefine LOGV macro to avoid use of __Logv -- makes compiling easier
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@1446 8ced0084-cf51-0410-be5f-012b33b47a6e
| -rw-r--r-- | Source/Core/Common/Src/Common.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/Common/Src/Common.h b/Source/Core/Common/Src/Common.h index b23d75d548..d99029ebf2 100644 --- a/Source/Core/Common/Src/Common.h +++ b/Source/Core/Common/Src/Common.h @@ -244,7 +244,7 @@ void Host_UpdateLogDisplay(); #ifdef LOGGING #define LOG(t, ...) __Log(LogTypes::t, __VA_ARGS__); -#define LOGV(t,v, ...) __Logv(LogTypes::t, v, __VA_ARGS__); +#define LOGV(t,v, ...) __Log(LogTypes::t + (v)*100, __VA_ARGS__); #define _dbg_assert_(_t_, _a_) \ if (!(_a_)){\ |
