2
1
Fork 0
mirror of https://github.com/yuzu-emu/yuzu.git synced 2024-07-04 23:31:19 +01:00

glasm: Remove unintentional '\n' on Undef32

This commit is contained in:
ReinUsesLisp 2021-05-26 18:33:34 -03:00 committed by ameerj
parent adb591a757
commit 2aa30353b7

View file

@ -225,7 +225,7 @@ void EmitUndefU16(EmitContext& ctx, IR::Inst& inst) {
} }
void EmitUndefU32(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) { void EmitUndefU64(EmitContext& ctx, IR::Inst& inst) {