mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-14 05:38:56 +00:00
- Don't compile inline asm on versions of GCC < 3 (it uses MMX registers, which don't seem to be supported).
svn-id: r15830
This commit is contained in:
parent
f930782098
commit
ea79c9c5e7
@ -46,8 +46,12 @@
|
||||
// This calculates the exact frequencies of notes as they are played, instead of offsetting from pre-cached semitones. Potentially very slow.
|
||||
#define MT32EMU_ACCURATENOTES 0
|
||||
|
||||
#if (defined (_MSC_VER) && defined(_M_IX86)) || (defined(__GNUC__) && defined(__i386__))
|
||||
#if (defined (_MSC_VER) && defined(_M_IX86))
|
||||
#define MT32EMU_HAVE_X86
|
||||
#elif defined(__GNUC__)
|
||||
#if __GNUC__ >= 3 && defined(__i386__)
|
||||
#define MT32EMU_HAVE_X86
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#ifdef MT32EMU_HAVE_X86
|
||||
|
Loading…
Reference in New Issue
Block a user