early-access version 1597

This commit is contained in:
pineappleEA
2021-04-14 05:52:45 +02:00
parent 6b7550f53d
commit ec96407490
12 changed files with 37 additions and 6 deletions

View File

@@ -3,5 +3,12 @@
// Refer to the license.txt file included.
#include "common/assert.h"
#include "common/common_funcs.h"
void assert_handle_failure() {}
#include "core/settings.h"
void assert_handle_failure() {
if (Settings::values.use_debug_asserts) {
Crash();
}
}