2021-04-02 07:43:26 +01:00
|
|
|
// Copyright 2021 yuzu Emulator Project
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#include "common/assert.h"
|
|
|
|
#include "common/common_funcs.h"
|
|
|
|
|
2021-04-14 02:38:10 +01:00
|
|
|
#include "core/settings.h"
|
|
|
|
|
2021-04-02 07:43:26 +01:00
|
|
|
void assert_handle_failure() {
|
2021-04-14 02:38:10 +01:00
|
|
|
if (Settings::values.use_debug_asserts) {
|
|
|
|
Crash();
|
|
|
|
}
|
2021-04-02 07:43:26 +01:00
|
|
|
}
|