No longer use CDECL for GUIList::FilterFunction

This commit is contained in:
Jonathan G Rennison
2022-11-19 21:51:44 +00:00
parent b52bb3ca44
commit 728b902e9f
11 changed files with 15 additions and 15 deletions

View File

@@ -1281,7 +1281,7 @@ enum CargoFilterSpecialType {
* @param cargoes The accepted and produced cargo pair to look for.
* @return bool Whether the given cargoes accepted and produced by the industry.
*/
static bool CDECL CargoFilter(const Industry * const *industry, const std::pair<CargoID, CargoID> &cargoes)
static bool CargoFilter(const Industry * const *industry, const std::pair<CargoID, CargoID> &cargoes)
{
auto accepted_cargo = cargoes.first;
auto produced_cargo = cargoes.second;