소스 검색

Merge pull request #567 from lioncash/warn

dyncom: Remove warning for SXTAH
bunnei 11 년 전
부모
커밋
befa556b78
1개의 변경된 파일0개의 추가작업 그리고 1개의 파일을 삭제
  1. 0 1
      src/core/arm/dyncom/arm_dyncom_interpreter.cpp

+ 0 - 1
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;