mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-04-23 05:45:51 +12:00
Fix typo
This commit is contained in:
parent
42cbcc1380
commit
5d9ded47da
35 changed files with 37343 additions and 21800 deletions
16
third_party/duckstation/duckstation_compat.h
vendored
Normal file
16
third_party/duckstation/duckstation_compat.h
vendored
Normal file
|
@ -0,0 +1,16 @@
|
|||
#ifndef DUCKSTATION_COMPAT_H
|
||||
#define DUCKSTATION_COMPAT_H
|
||||
|
||||
#include <assert.h>
|
||||
|
||||
#include "compiler_builtins.hpp"
|
||||
#include "helpers.hpp"
|
||||
|
||||
#define AssertMsg(cond, msg) assert(cond&& msg)
|
||||
#define Assert(cond) assert(cond)
|
||||
|
||||
#define Panic(msg) assert(false && msg)
|
||||
|
||||
#define UnreachableCode() __builtin_unreachable()
|
||||
|
||||
#endif
|
Loading…
Add table
Add a link
Reference in a new issue