State: Increase Decompressing OSD message duration

Show the "Decompressing State..." message for 2 seconds, instead of the
half-second duration that caused it to be halfway faded out immediately.
This commit is contained in:
Dentomologist 2025-02-06 17:17:18 -08:00
parent c6be362a8c
commit 363155b597

View File

@ -813,7 +813,7 @@ static void LoadFileStateData(const std::string& filename, std::vector<u8>& ret_
{
case CompressionType::LZ4:
{
Core::DisplayMessage("Decompressing State...", 500);
Core::DisplayMessage("Decompressing State...", OSD::Duration::SHORT);
if (!DecompressLZ4(buffer, extended_header.base_header.uncompressed_size, f))
return;