From a09612264c77c4d2e0ea9b678e046b63fa467c3d Mon Sep 17 00:00:00 2001 From: elsid Date: Mon, 27 Feb 2023 23:35:48 +0100 Subject: [PATCH] Fix setRecordId overload declaration To match other declarations arguments order. --- apps/opencs/model/world/collection.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/opencs/model/world/collection.hpp b/apps/opencs/model/world/collection.hpp index 6e6751823d..156c5f9c71 100644 --- a/apps/opencs/model/world/collection.hpp +++ b/apps/opencs/model/world/collection.hpp @@ -51,7 +51,7 @@ namespace CSMWorld return ESM::RefId::stringRefId(Land::createUniqueRecordId(record.mX, record.mY)); } - inline void setRecordId(LandTexture& record, const ESM::RefId& id) + inline void setRecordId(const ESM::RefId& id, LandTexture& record) { int plugin = 0; int index = 0;