Fix build error on non-x86 architectures as pointed out by Jochen Schmitt.

This commit is contained in:
Brecht Van Lommel 2013-06-04 11:21:13 +00:00
parent ec2c6038ee
commit 3fe117bd3d

@ -199,7 +199,12 @@ bool system_cpu_support_sse3()
#else
bool system_cpu_support_optimized()
bool system_cpu_support_sse2()
{
return false;
}
bool system_cpu_support_sse3()
{
return false;
}