mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-27 15:35:27 +00:00
Forgot the non logging case
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@2522 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
parent
17814912e5
commit
3f46618e2d
@ -123,12 +123,12 @@ extern void __Log(int logNumber, const char* text, ...);
|
||||
}
|
||||
#define _dbg_update_() Host_UpdateLogDisplay();
|
||||
|
||||
#else
|
||||
#else // no logging
|
||||
|
||||
#define LOG(_t_, ...)
|
||||
#define LOGV(_t_, _v_, ...)
|
||||
#define LOGP(_t_, ...)
|
||||
#define LOGVP(_t_, _v_, ...)
|
||||
//#define LOG(_t_, ...)
|
||||
//#define LOGV(_t_, _v_, ...)
|
||||
//#define LOGP(_t_, ...)
|
||||
//#define LOGVP(_t_, _v_, ...)
|
||||
|
||||
#define _dbg_clear_()
|
||||
#define _dbg_update_() ;
|
||||
@ -138,10 +138,11 @@ extern void __Log(int logNumber, const char* text, ...);
|
||||
#define _dbg_assert_msg_(_t_, _a_, _desc_, ...) ;
|
||||
#endif
|
||||
|
||||
#define ERROR_LOG(t, ...) ;
|
||||
#define WARN_LOG(t, ...) ;
|
||||
#define INFO_LOG(t ,...) ;
|
||||
#define DEBUG_LOG(t, ...) ;
|
||||
#define GENERIC_LOG(t,v, ...) {}
|
||||
#define ERROR_LOG(t, ...) {}
|
||||
#define WARN_LOG(t, ...) {}
|
||||
#define INFO_LOG(t ,...) {}
|
||||
#define DEBUG_LOG(t, ...) {}
|
||||
|
||||
#endif
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user