mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-01 13:48:56 +00:00
Fix the vertexloader on non-x86 targets.
When I dropped ARM from a generic target, this caused the vertexloader to try using the JIT path. Instead of !_M_GENERIC, check for _M_X86 instead. Since it is only for the x86 target
This commit is contained in:
parent
679f57eb1f
commit
f87b913f0e
1 changed files with 1 additions and 1 deletions
|
@ -17,7 +17,7 @@
|
||||||
#include "VideoCommon/DataReader.h"
|
#include "VideoCommon/DataReader.h"
|
||||||
#include "VideoCommon/NativeVertexFormat.h"
|
#include "VideoCommon/NativeVertexFormat.h"
|
||||||
|
|
||||||
#ifndef _M_GENERIC
|
#ifdef _M_X86
|
||||||
#ifndef __APPLE__
|
#ifndef __APPLE__
|
||||||
#define USE_VERTEX_LOADER_JIT
|
#define USE_VERTEX_LOADER_JIT
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue