1
0
Fork 0

Codechange: Use SQInteger for generic numbers in script_companymode

pull/10532/head
glx22 2023-02-10 17:37:18 +01:00 committed by Loïc Guilloux
parent 89c0841d0a
commit 424ae74504
2 changed files with 3 additions and 3 deletions

View File

@ -13,13 +13,13 @@
#include "../../safeguards.h" #include "../../safeguards.h"
ScriptCompanyMode::ScriptCompanyMode(int company) ScriptCompanyMode::ScriptCompanyMode(SQInteger company)
{ {
if (company < OWNER_BEGIN || company >= MAX_COMPANIES) company = INVALID_COMPANY; if (company < OWNER_BEGIN || company >= MAX_COMPANIES) company = INVALID_COMPANY;
if (!::Company::IsValidID(company)) company = INVALID_COMPANY; if (!::Company::IsValidID(company)) company = INVALID_COMPANY;
this->last_company = ScriptObject::GetCompany(); this->last_company = ScriptObject::GetCompany();
ScriptObject::SetCompany((CompanyID)company); ScriptObject::SetCompany((::CompanyID)company);
} }
ScriptCompanyMode::~ScriptCompanyMode() ScriptCompanyMode::~ScriptCompanyMode()

View File

@ -40,7 +40,7 @@ public:
* @note When the instance is destroyed, it restores the company that was * @note When the instance is destroyed, it restores the company that was
* current when the instance was created! * current when the instance was created!
*/ */
ScriptCompanyMode(int company); ScriptCompanyMode(SQInteger company);
/** /**
* Destroying this instance reset the company to that what it was * Destroying this instance reset the company to that what it was