Writing is working.

This commit is contained in:
Pcornat 2022-01-20 23:16:51 +01:00
parent 3c1ce804a0
commit 2023360149
Signed by: Pcornat
GPG key ID: 2F3932FF46D9ECA0
5 changed files with 31 additions and 9 deletions

View file

@ -36,9 +36,9 @@ namespace gui::menu {
[[nodiscard]] bool is_edit_mode() const { return edit_mode; }
void set_save_path(const fs::path &savePath) const { save_path = savePath; }
void set_save_path([[maybe_unused]] const Controller &controller, const fs::path &savePath) const { save_path = savePath; }
void set_filename(const std::string &fileName) const { filename = fileName; }
void set_filename([[maybe_unused]] const Controller &controller, const std::string &fileName) const { filename = fileName; }
};
}