1
0
Fork 0
mirror of https://github.com/PabloMK7/citra.git synced 2025-04-03 18:41:32 +02:00

Make UNIMPLEMENTED_MSG consistent with UNIMPLEMENTED ()

The current inconsistency can result in a developer unintentionally
creating a crash when using UNIMPLEMENTED_MSG, if they're only
familiar with UNIMPLEMENTED. The two macros shouldn't have such
wildly different behaviors.
This commit is contained in:
Vitor K 2020-12-06 19:36:04 -03:00 committed by GitHub
parent 6f45b402e7
commit 4888a14c12
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -55,4 +55,4 @@ assert_noinline_call(const Fn& fn) {
#endif
#define UNIMPLEMENTED() LOG_CRITICAL(Debug, "Unimplemented code!")
#define UNIMPLEMENTED_MSG(_a_, ...) ASSERT_MSG(false, _a_, __VA_ARGS__)
#define UNIMPLEMENTED_MSG(_a_, ...) LOG_CRITICAL(Debug, _a_, __VA_ARGS__)