summaryrefslogtreecommitdiff
path: root/Source/Core/Common/Logging
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2014-08-05 00:35:53 -0400
committerLioncash <mathew1800@gmail.com>2014-08-08 19:21:40 -0400
commit7bf82f19895f1f6b01d5b3971e1e9e4dae5dc154 (patch)
treed0dac0bbf10331f0a95ad9b223fe463b8b00c893 /Source/Core/Common/Logging
parenta0a533d3a3ac6b2257d2b7c88033d95d47dcce83 (diff)
Core: Kill off Host_UpdateLogDisplay()
This was actually never used as far as I can tell. There was no wx event handling done whatsoever for the global ID, So this is basically a dead function.
Diffstat (limited to 'Source/Core/Common/Logging')
-rw-r--r--Source/Core/Common/Logging/Log.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/Source/Core/Common/Logging/Log.h b/Source/Core/Common/Logging/Log.h
index fa67058b86..c7675a9a07 100644
--- a/Source/Core/Common/Logging/Log.h
+++ b/Source/Core/Common/Logging/Log.h
@@ -122,11 +122,7 @@ void GenericLog(LogTypes::LOG_LEVELS level, LogTypes::LOG_TYPE type,
ERROR_LOG(_t_, __VA_ARGS__); \
if (!PanicYesNo(__VA_ARGS__)) {Crash();} \
}
-#define _dbg_update_() Host_UpdateLogDisplay();
-
#else // not debug
-#define _dbg_update_() ;
-
#ifndef _dbg_assert_
#define _dbg_assert_(_t_, _a_) {}
#define _dbg_assert_msg_(_t_, _a_, _desc_, ...) {}