mirror of https://github.com/stella-emu/stella.git
Fix build on gcc 10.
This commit is contained in:
parent
2397b4c0f5
commit
390c69fb36
|
@ -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)
|
||||
{}
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue