diff options
author | frosch <frosch@openttd.org> | 2016-04-17 17:10:07 +0000 |
---|---|---|
committer | frosch <frosch@openttd.org> | 2016-04-17 17:10:07 +0000 |
commit | 31bd5a09b6383c83898844d4550b7b38931ed859 (patch) | |
tree | 80b123f343ddd94492360977c438ab88aa3bde64 /src | |
parent | 7e59cf588d93aa243799f9836ca69e9835e6c81d (diff) | |
download | openttd-31bd5a09b6383c83898844d4550b7b38931ed859.tar.xz |
(svn r27543) -Fix (r27379): ScriptExec/TestMode::FinalRelease is not part of the API.
Diffstat (limited to 'src')
-rw-r--r-- | src/script/api/script_execmode.hpp | 3 | ||||
-rw-r--r-- | src/script/api/script_testmode.hpp | 3 |
2 files changed, 6 insertions, 0 deletions
diff --git a/src/script/api/script_execmode.hpp b/src/script/api/script_execmode.hpp index 84eda5ce2..96d30d1e4 100644 --- a/src/script/api/script_execmode.hpp +++ b/src/script/api/script_execmode.hpp @@ -47,6 +47,9 @@ public: */ ~ScriptExecMode(); + /** + * @api -all + */ virtual void FinalRelease(); }; diff --git a/src/script/api/script_testmode.hpp b/src/script/api/script_testmode.hpp index 25c1ddaab..699d4db18 100644 --- a/src/script/api/script_testmode.hpp +++ b/src/script/api/script_testmode.hpp @@ -49,6 +49,9 @@ public: */ ~ScriptTestMode(); + /** + * @api -all + */ virtual void FinalRelease(); }; |