mirror of https://github.com/PCSX2/pcsx2.git
x86_intrin.h: fix build using GCC (#1468)
__GNUG__ is not defined while compiling this file, this causes the build to fail. Replacing this with __GNUC__ fixes this.
This commit is contained in:
parent
1e92c24847
commit
5a17b95901
|
@ -16,7 +16,7 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
// Because nobody can't agree on a single name !
|
// Because nobody can't agree on a single name !
|
||||||
#if defined(__GNUG__)
|
#if defined(__GNUC__)
|
||||||
|
|
||||||
// Yes there are several files for the same features!
|
// Yes there are several files for the same features!
|
||||||
// x86intrin.h which is the general include provided by the compiler
|
// x86intrin.h which is the general include provided by the compiler
|
||||||
|
|
Loading…
Reference in New Issue