summaryrefslogtreecommitdiff
path: root/src/common/x64/emitter.cpp
diff options
context:
space:
mode:
authorGravatar Lioncash2015-08-20 04:36:25 -0400
committerGravatar Lioncash2015-08-20 04:45:32 -0400
commite85c5dbb54e6b2f6d14eaca42fb4b9c630614ff0 (patch)
tree8496228fd7bb7ccc83b43fca79aa64de585d90ae /src/common/x64/emitter.cpp
parentemitter: Remove unnecessary else keywords (diff)
downloadyuzu-e85c5dbb54e6b2f6d14eaca42fb4b9c630614ff0.tar.gz
yuzu-e85c5dbb54e6b2f6d14eaca42fb4b9c630614ff0.tar.xz
yuzu-e85c5dbb54e6b2f6d14eaca42fb4b9c630614ff0.zip
emitter: Remove unnecessary defines
Diffstat (limited to 'src/common/x64/emitter.cpp')
-rw-r--r--src/common/x64/emitter.cpp6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/common/x64/emitter.cpp b/src/common/x64/emitter.cpp
index 61fe197bd..cf31f8d69 100644
--- a/src/common/x64/emitter.cpp
+++ b/src/common/x64/emitter.cpp
@@ -15,6 +15,7 @@
15// Official SVN repository and contact information can be found at 15// Official SVN repository and contact information can be found at
16// http://code.google.com/p/dolphin-emu/ 16// http://code.google.com/p/dolphin-emu/
17 17
18#include <cinttypes>
18#include <cstring> 19#include <cstring>
19 20
20#include "common/assert.h" 21#include "common/assert.h"
@@ -25,11 +26,6 @@
25#include "cpu_detect.h" 26#include "cpu_detect.h"
26#include "emitter.h" 27#include "emitter.h"
27 28
28#define PRIx64 "llx"
29
30// Minimize the diff against Dolphin
31#define DYNA_REC JIT
32
33namespace Gen 29namespace Gen
34{ 30{
35 31