mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-30 04:38:49 +00:00
Remove the rest of x86_32 support from Common.
This commit is contained in:
parent
a70fad4dcb
commit
0c24e1dcf2
11 changed files with 17 additions and 429 deletions
|
@ -148,14 +148,11 @@ inline u64 _rotr64(u64 x, unsigned int shift){
|
|||
#define fstat64 _fstat64
|
||||
#define fileno _fileno
|
||||
|
||||
#if _M_X86_32
|
||||
#define Crash() {__asm int 3}
|
||||
#else
|
||||
extern "C" {
|
||||
extern "C"
|
||||
{
|
||||
__declspec(dllimport) void __stdcall DebugBreak(void);
|
||||
}
|
||||
#define Crash() {DebugBreak();}
|
||||
#endif // M_IX86
|
||||
#define Crash() {DebugBreak();}
|
||||
#endif // WIN32 ndef
|
||||
|
||||
// Generic function to get last error message.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue