diff --git a/src/replay.cpp b/src/replay.cpp index e72c7337bd3..73e6099956e 100644 --- a/src/replay.cpp +++ b/src/replay.cpp @@ -154,12 +154,6 @@ void replay::throw_error(const std::string& msg) if (!game_config::ignore_replay_errors) throw replay::error(msg); } - -config& replay::get_config() -{ - return cfg_; -} - void replay::set_save_info(const game_state& save) { saveInfo_ = save; diff --git a/src/replay.hpp b/src/replay.hpp index e0d7907249d..5fae9b34caf 100644 --- a/src/replay.hpp +++ b/src/replay.hpp @@ -35,8 +35,6 @@ public: replay(); explicit replay(const config& cfg); - config& get_config(); - void set_save_info(const game_state& save); const game_state& get_save_info() const;