* Fix options and screenshot saving.

This commit is contained in:
iProgramInCpp
2023-11-04 15:01:40 +02:00
parent 492ee48125
commit 4877dfde6d
3 changed files with 38 additions and 0 deletions

View File

@@ -52,6 +52,7 @@ public:
// Also add these to allow saving options.
//void setOptionStrings(const std::vector <std::string>& str) override;
bool hasFileSystemAccess() override;
SoundSystem* const getSoundSystem() const override;
void initSoundSystem() override;
@@ -59,6 +60,7 @@ public:
void setScreenSize(int width, int height);
void initAndroidApp(android_app* ptr);
void setExternalStoragePath(const std::string& path);
private:
int m_ScreenWidth;
@@ -81,5 +83,7 @@ private:
android_app* m_app;
SoundSystem* m_pSoundSystem;
std::string m_storageDir;
};