mirror of
https://github.com/pineappleEA/pineapple-src.git
synced 2024-11-26 04:18:26 -05:00
14 lines
303 B
C++
Executable File
14 lines
303 B
C++
Executable File
// SPDX-FileCopyrightText: Copyright 2021 yuzu Emulator Project
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
#include "common/assert.h"
|
|
#include "common/common_funcs.h"
|
|
|
|
#include "common/settings.h"
|
|
|
|
void assert_handle_failure() {
|
|
if (Settings::values.use_debug_asserts) {
|
|
Crash();
|
|
}
|
|
}
|