summaryrefslogtreecommitdiffstats
path: root/src/core/arm/dyncom
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2015-02-13 02:14:10 +0100
committerbunnei <bunneidev@gmail.com>2015-02-13 02:14:10 +0100
commitbefa556b78c06ad7ed4d7d477a1bbd8c49c87ee2 (patch)
tree7e388eb83c4e4f3fc2875f80b0389f68dd0bc645 /src/core/arm/dyncom
parentMerge pull request #561 from Alegend45/master (diff)
parentdyncom: Remove warning for SXTAH (diff)
downloadyuzu-befa556b78c06ad7ed4d7d477a1bbd8c49c87ee2.tar
yuzu-befa556b78c06ad7ed4d7d477a1bbd8c49c87ee2.tar.gz
yuzu-befa556b78c06ad7ed4d7d477a1bbd8c49c87ee2.tar.bz2
yuzu-befa556b78c06ad7ed4d7d477a1bbd8c49c87ee2.tar.lz
yuzu-befa556b78c06ad7ed4d7d477a1bbd8c49c87ee2.tar.xz
yuzu-befa556b78c06ad7ed4d7d477a1bbd8c49c87ee2.tar.zst
yuzu-befa556b78c06ad7ed4d7d477a1bbd8c49c87ee2.zip
Diffstat (limited to 'src/core/arm/dyncom')
-rw-r--r--src/core/arm/dyncom/arm_dyncom_interpreter.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/core/arm/dyncom/arm_dyncom_interpreter.cpp b/src/core/arm/dyncom/arm_dyncom_interpreter.cpp
index c91943f24..17944c0a8 100644
--- a/src/core/arm/dyncom/arm_dyncom_interpreter.cpp
+++ b/src/core/arm/dyncom/arm_dyncom_interpreter.cpp
@@ -2905,7 +2905,6 @@ ARM_INST_PTR INTERPRETER_TRANSLATE(sxtb16)(unsigned int inst, int index)
}
ARM_INST_PTR INTERPRETER_TRANSLATE(sxtah)(unsigned int inst, int index){
- LOG_WARNING(Core_ARM11, "SXTAH untested");
arm_inst *inst_base = (arm_inst *)AllocBuffer(sizeof(arm_inst) + sizeof(sxtah_inst));
sxtah_inst *inst_cream = (sxtah_inst *)inst_base->component;