Fix a46a3a97f3: Incorrect parameter order for CmdSetCompanyManagerFace.
Style and bits were mixed up. Switch everything to style first, as the most significant parameter.
This commit is contained in:
committed by
Peter Nelson
parent
bf3a07c5d2
commit
75ca1e3cda
@@ -1384,7 +1384,7 @@ public:
|
||||
|
||||
/* OK button */
|
||||
case WID_SCMF_ACCEPT:
|
||||
Command<CMD_SET_COMPANY_MANAGER_FACE>::Post(this->face.bits, this->face.style);
|
||||
Command<CMD_SET_COMPANY_MANAGER_FACE>::Post(this->face.style, this->face.bits);
|
||||
[[fallthrough]];
|
||||
|
||||
/* Cancel button */
|
||||
|
||||
Reference in New Issue
Block a user