Guest User

Untitled

a guest
Jul 23rd, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. Index: Source/Core/Core/Src/CoreParameter.cpp
  2. ===================================================================
  3. --- Source/Core/Core/Src/CoreParameter.cpp (revision 4987)
  4. +++ Source/Core/Core/Src/CoreParameter.cpp (working copy)
  5. @@ -67,6 +67,11 @@
  6. // Newer revs (~4890) require both turned off
  7. bJITLoadStoreOff = true;
  8. bJITLoadStorePairedOff = true;
  9. +#elif defined(__linux__)
  10. + // Similar to OSX, something with LoadStorePaired seems to cause
  11. + // crashes on linux. Only Win32 seems to be forgiving enough to
  12. + // not do anything funny...
  13. + bJITLoadStorePairedOff = true;
  14. #endif
  15.  
  16. m_strName = "NONE";
Add Comment
Please, Sign In to add comment