mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2026-04-17 19:52:54 +00:00
fix: add back compat functionality to the AudioBackend enum as well, and add missing migration comment from config version 70
This commit is contained in:
@@ -484,7 +484,13 @@ namespace Ryujinx.Ava.Systems.Configuration
|
||||
};
|
||||
}
|
||||
),
|
||||
(69, static cff => cff.SkipUserProfiles = false)
|
||||
(69, static cff => cff.SkipUserProfiles = false),
|
||||
// no migration needed for 70
|
||||
(71, static cff =>
|
||||
{
|
||||
if (cff.AudioBackend is AudioBackend.SDL2)
|
||||
cff.AudioBackend = AudioBackend.SDL3;
|
||||
})
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user