Merge branch 'master' of github.com:wesnoth/wesnoth
This commit is contained in:
commit
0ca1ae27c1
4 changed files with 11 additions and 0 deletions
|
@ -11,6 +11,8 @@ Version 1.13.10+dev:
|
|||
author can't accidentally use them and make an add-on that breaks on
|
||||
GNU/Linux and macOS.
|
||||
* File paths are now case sensitive even on Windows.
|
||||
* Miscellaneous and bug fixes:
|
||||
* Fixed ingame help showing units you haven't encountered (bug #2135)
|
||||
|
||||
Version 1.13.10:
|
||||
* Add-ons client:
|
||||
|
|
|
@ -5,6 +5,8 @@ changelog: https://github.com/wesnoth/wesnoth/blob/master/changelog
|
|||
Version 1.13.10+dev:
|
||||
* Language and i18n:
|
||||
* Updated translations: Chinese (Simplified).
|
||||
* Miscellaneous and bug fixes:
|
||||
* Fixed ingame help showing units you haven't encountered (bug #2135)
|
||||
|
||||
|
||||
Version 1.13.10:
|
||||
|
|
|
@ -320,6 +320,12 @@ void set_active_scopes(hk_scopes s)
|
|||
scope_active_ = s;
|
||||
}
|
||||
|
||||
bool is_scope_active(scope s)
|
||||
{
|
||||
assert(s < SCOPE_COUNT);
|
||||
return scope_active_[s];
|
||||
}
|
||||
|
||||
bool is_scope_active(hk_scopes s)
|
||||
{
|
||||
// s is a copy because we need one
|
||||
|
|
|
@ -280,6 +280,7 @@ const hotkey_command& get_hotkey_null();
|
|||
void deactivate_all_scopes();
|
||||
void set_scope_active(scope s, bool set = true);
|
||||
void set_active_scopes(hk_scopes s);
|
||||
bool is_scope_active(scope s);
|
||||
bool is_scope_active(hk_scopes s);
|
||||
|
||||
///
|
||||
|
|
Loading…
Add table
Reference in a new issue