assert.cpp 322 B

1234567891011121314
  1. // Copyright 2021 yuzu Emulator Project
  2. // Licensed under GPLv2 or any later version
  3. // Refer to the license.txt file included.
  4. #include "common/assert.h"
  5. #include "common/common_funcs.h"
  6. #include "common/settings.h"
  7. void assert_handle_failure() {
  8. if (Settings::values.use_debug_asserts) {
  9. Crash();
  10. }
  11. }