This commit is contained in:
Skyth 2024-09-12 15:45:59 +03:00
parent 572dc2a67f
commit ce3f9621f6

@ -178,7 +178,7 @@ int main()
std::println(f, "\tctx.lr = 0x{:X};", base); std::println(f, "\tctx.lr = 0x{:X};", base);
std::println(f, "\tcallerCtx = ctx;"); std::println(f, "\tcallerCtx = ctx;");
std::println(f, "\t{}(callerCtx, base);", targetName); std::println(f, "\t{}(callerCtx, base);", targetName);
std::println(f, "\ctx = callerCtx;"); std::println(f, "\tctx = callerCtx;");
break; break;
} }