mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
Fix the Windows 32-bit build.
(It was complaining about inline assembly in a lambda, I guess at some point we moved a call to Crash into a lambda and it became unhappy).
This commit is contained in:
parent
d37893d1ac
commit
4ffc73bf5b
1 changed files with 1 additions and 5 deletions
|
@ -77,11 +77,7 @@ inline u64 __rotr64(u64 x, unsigned int shift){
|
|||
#define ftello _ftelli64
|
||||
#define atoll _atoi64
|
||||
#endif
|
||||
#if _M_IX86
|
||||
#define Crash() {__asm int 3}
|
||||
#else
|
||||
#define Crash() {__debugbreak();}
|
||||
#endif // M_IX86
|
||||
#endif // WIN32 ndef
|
||||
|
||||
// Generic function to get last error message.
|
||||
|
|
Loading…
Add table
Reference in a new issue