From f0eba5d29ebbd684a2a35f7583edb4de24a1161f Mon Sep 17 00:00:00 2001 From: sorgelig Date: Thu, 25 Feb 2021 07:31:06 +0800 Subject: [PATCH] Prevent wrong status sending for Minimig and AtariST cores. --- user_io.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/user_io.cpp b/user_io.cpp index 80b36d8..7fe0f28 100644 --- a/user_io.cpp +++ b/user_io.cpp @@ -1227,7 +1227,7 @@ void user_io_init(const char *path, const char *xml) send_rtc(3); // release reset - user_io_8bit_set_status(0, UIO_STATUS_RESET); + if(!is_minimig() && !is_st()) user_io_8bit_set_status(0, UIO_STATUS_RESET); if(xml) arcade_check_error(); break; }