From 185c70bd1004ea37a360084acdc90033704ad967 Mon Sep 17 00:00:00 2001 From: MelonSpeedruns Date: Mon, 6 Apr 2026 19:08:10 -0400 Subject: [PATCH] Accelerate saving, copying & erasing save files --- src/d/d_file_select.cpp | 4 ++++ src/d/d_menu_save.cpp | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/src/d/d_file_select.cpp b/src/d/d_file_select.cpp index c739b39db2..f63403d886 100644 --- a/src/d/d_file_select.cpp +++ b/src/d/d_file_select.cpp @@ -70,7 +70,11 @@ dFs_HIO_c::dFs_HIO_c() { select_icon_appear_frames = 5; appear_display_wait_frames = 15; field_0x000d = 15; + #if TARGET_PC + card_wait_frames = 0; + #else card_wait_frames = 90; + #endif test_frame_counts[0] = 1.11f; test_frame_counts[1] = 1.11f; test_frame_counts[2] = 1.11f; diff --git a/src/d/d_menu_save.cpp b/src/d/d_menu_save.cpp index 7ecc41f823..eb7b6a35b8 100644 --- a/src/d/d_menu_save.cpp +++ b/src/d/d_menu_save.cpp @@ -56,7 +56,11 @@ static dMs_HIO_c g_msHIO; dMs_HIO_c::dMs_HIO_c() { mDisplayWaitFrames = 15; + #if TARGET_PC + mCardWaitFrames = 0; + #else mCardWaitFrames = 90; + #endif mEffectDispFrames = 5; mCharSwitchFrames = 5; mSelectIcon = 5;