99ceb03a1c
This formats all copyright comments according to SPDX formatting guidelines. Additionally, this resolves the remaining GPLv2 only licensed files by relicensing them to GPLv2.0-or-later.
14 lines
303 B
C++
14 lines
303 B
C++
// 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();
|
|
}
|
|
}
|