Patch options button in file select to be a quit button instead, update RT64 and RmlUi

This commit is contained in:
Mr-Wiseguy
2023-12-27 17:56:26 -05:00
parent fd29131b02
commit c0abf1a203
7 changed files with 67 additions and 4 deletions
+5 -1
View File
@@ -115,7 +115,7 @@ extern "C" void recomp_get_camera_inputs(uint8_t* rdram, recomp_context* ctx) {
*y_out = y_val;
}
// TODO move this
// TODO move these
extern "C" void recomp_puts(uint8_t* rdram, recomp_context* ctx) {
PTR(char) cur_str = _arg<0, PTR(char)>(rdram, ctx);
u32 length = _arg<1, u32>(rdram, ctx);
@@ -124,3 +124,7 @@ extern "C" void recomp_puts(uint8_t* rdram, recomp_context* ctx) {
fputc(MEM_B(i, (gpr)cur_str), stdout);
}
}
extern "C" void recomp_exit(uint8_t* rdram, recomp_context* ctx) {
ultramodern::quit();
}