1
0
mirror of https://github.com/vcmi/vcmi.git synced 2024-11-24 08:32:34 +02:00

Fix regression - uninitialized pointer

This commit is contained in:
Ivan Savenko 2023-03-16 19:25:26 +02:00
parent 921c5d647e
commit fbb9810c49

View File

@ -52,7 +52,9 @@ public:
{
std::vector<si32> primskills;
si32 mana, manaLimit, luck, morale;
} *details;
};
Details * details = nullptr;
const CHeroClass *hclass;
int portrait;