mirror of https://github.com/stella-emu/stella.git
Fix build on gcc 10.
This commit is contained in:
parent
5c35750d54
commit
3dab241fee
|
@ -48,3 +48,8 @@ shared_ptr<CompositeKeyValueRepositoryAtomic> OSystemStandalone::getHighscoreRep
|
||||||
{
|
{
|
||||||
return shared_ptr<CompositeKeyValueRepositoryAtomic>(myStellaDb, &myStellaDb->highscoreRepository());
|
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;
|
string describePresistence() override;
|
||||||
|
|
||||||
|
void getBaseDirectories(string& basedir, string& homedir,
|
||||||
|
bool useappdir, const string& usedir) override;
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
|
||||||
shared_ptr<StellaDb> myStellaDb;
|
shared_ptr<StellaDb> myStellaDb;
|
||||||
|
|
Loading…
Reference in New Issue