1
0
mirror of https://github.com/vcmi/vcmi.git synced 2025-11-25 22:42:04 +02:00
This commit is contained in:
Laserlicht
2025-09-16 02:58:41 +02:00
parent 230144dd04
commit 9502c2c201
2 changed files with 6 additions and 2 deletions

View File

@@ -45,7 +45,7 @@ public:
#define vectorOperator(OPSIGN) \
ResourceSet& operator OPSIGN ## =(const ResourceSet &rhs) \
{ \
for(auto i = 0; i < container.size(); i++) \
for(auto i = 0; i < rhs.size(); i++) \
container[GameResID(i)] OPSIGN ## = rhs[i]; \
\
return *this; \