Attempt at fixing R77 crash.

This commit is contained in:
Christian Speckner 2021-01-06 21:12:11 +01:00
parent ab5ab64f7d
commit 1cf93ca0a0
2 changed files with 2 additions and 1 deletions

View File

@ -77,6 +77,7 @@ void StellaDb::initialize()
mySettingsRepository = make_unique<KeyValueRepositoryNoop>();
myPropertyRepository = make_unique<CompositeKeyValueRepositoryNoop>();
myHighscoreRepository = make_unique<CompositeKeyValueRepositoryNoop>();
myDb.reset();
myPropertyRepositoryHost.reset();

View File

@ -21,5 +21,5 @@
void OSystemR77::getBaseDirectories(string& basedir, string& homeDir,
bool, const string&)
{
basedir = homeDir = "/mnt/stella";
basedir = homeDir = "/mnt/stella/";
}