mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-22 22:00:39 -06:00
Assert: Remove unused parameter from DEBUG_ASSERT
This brings the macro in line with the regular ASSERT macro, which only has one macro parameter.
This commit is contained in:
@ -61,7 +61,7 @@
|
||||
__LINE__, __FILE__); \
|
||||
} while (0)
|
||||
|
||||
#define DEBUG_ASSERT(_t_, _a_) \
|
||||
#define DEBUG_ASSERT(_a_) \
|
||||
do \
|
||||
{ \
|
||||
if (MAX_LOGLEVEL >= LogTypes::LOG_LEVELS::LDEBUG) \
|
||||
|
Reference in New Issue
Block a user