소스 검색

glasm: Remove unintentional '\n' on Undef32

ReinUsesLisp 5 년 전
부모
커밋
2aa30353b7
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/shader_recompiler/backend/glasm/emit_glasm_not_implemented.cpp

+ 1 - 1
src/shader_recompiler/backend/glasm/emit_glasm_not_implemented.cpp

@@ -225,7 +225,7 @@ void EmitUndefU16(EmitContext& ctx, IR::Inst& inst) {
 }
 
 void EmitUndefU32(EmitContext& ctx, IR::Inst& inst) {
-    ctx.Add("MOV.S {}.x,0;\n", inst);
+    ctx.Add("MOV.S {}.x,0;", inst);
 }
 
 void EmitUndefU64(EmitContext& ctx, IR::Inst& inst) {