mirror of
https://github.com/WinampDesktop/winamp.git
synced 2025-06-16 12:15:46 -04:00
Settings: Fix memory cards not syncing with disc change in title mode
This commit is contained in:
@ -2,9 +2,17 @@
|
||||
#include "common/string_util.h"
|
||||
#include "host_interface.h"
|
||||
#include <array>
|
||||
#include <algorithm>
|
||||
|
||||
Settings::Settings() = default;
|
||||
|
||||
bool Settings::HasAnyPerGameMemoryCards() const
|
||||
{
|
||||
return std::any_of(memory_card_types.begin(), memory_card_types.end(), [](MemoryCardType t) {
|
||||
return (t == MemoryCardType::PerGame || t == MemoryCardType::PerGameTitle);
|
||||
});
|
||||
}
|
||||
|
||||
void Settings::Load(SettingsInterface& si)
|
||||
{
|
||||
region =
|
||||
|
Reference in New Issue
Block a user