mirror of https://github.com/stella-emu/stella.git
Fix Xcode project after recent refactoring.
This commit is contained in:
parent
265a090cc1
commit
6ba428ff37
|
@ -23,9 +23,9 @@
|
||||||
class SettingsRepositoryMACOS : public KeyValueRepository
|
class SettingsRepositoryMACOS : public KeyValueRepository
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
std::map<string, Variant> load() override;
|
KVRMap load() override;
|
||||||
|
|
||||||
bool save(const std::map<string, Variant>& values) override;
|
bool save(const KVRMap& values) override;
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif // SETTINGS_REPOSITORY_MACOS_HXX
|
#endif // SETTINGS_REPOSITORY_MACOS_HXX
|
||||||
|
|
|
@ -20,9 +20,9 @@
|
||||||
#include "SettingsRepositoryMACOS.hxx"
|
#include "SettingsRepositoryMACOS.hxx"
|
||||||
|
|
||||||
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||||
std::map<string, Variant> SettingsRepositoryMACOS::load()
|
KVRMap SettingsRepositoryMACOS::load()
|
||||||
{
|
{
|
||||||
std::map<string, Variant> values;
|
KVRMap values;
|
||||||
|
|
||||||
@autoreleasepool {
|
@autoreleasepool {
|
||||||
NSString* bundleId = [[NSBundle mainBundle] bundleIdentifier];
|
NSString* bundleId = [[NSBundle mainBundle] bundleIdentifier];
|
||||||
|
@ -40,7 +40,7 @@ std::map<string, Variant> SettingsRepositoryMACOS::load()
|
||||||
}
|
}
|
||||||
|
|
||||||
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||||
bool SettingsRepositoryMACOS::save(const std::map<string, Variant>& values)
|
bool SettingsRepositoryMACOS::save(const KVRMap& values)
|
||||||
{
|
{
|
||||||
@autoreleasepool {
|
@autoreleasepool {
|
||||||
NSUserDefaults* defaults = [NSUserDefaults standardUserDefaults];
|
NSUserDefaults* defaults = [NSUserDefaults standardUserDefaults];
|
||||||
|
|
Loading…
Reference in New Issue