Fix build on gcc 10.

This commit is contained in:
Christian Speckner 2021-11-30 21:31:41 +00:00
parent 2397b4c0f5
commit 390c69fb36
2 changed files with 8 additions and 0 deletions

View File

@ -48,3 +48,8 @@ shared_ptr<CompositeKeyValueRepositoryAtomic> OSystemStandalone::getHighscoreRep
{
return shared_ptr<CompositeKeyValueRepositoryAtomic>(myStellaDb, &myStellaDb->highscoreRepository());
}
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
void OSystemStandalone::getBaseDirectories(string& basedir, string& homedir,
bool useappdir, const string& usedir)
{}

View File

@ -40,6 +40,9 @@ class OSystemStandalone : public OSystem
string describePresistence() override;
void getBaseDirectories(string& basedir, string& homedir,
bool useappdir, const string& usedir) override;
private:
shared_ptr<StellaDb> myStellaDb;