1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-01-16 19:19:56 +00:00

fix builds against MyGUI master

This commit is contained in:
Evil Eye 2019-06-16 14:41:34 +02:00
parent 8d1cad8462
commit 698c90b3ee

View file

@ -16,7 +16,7 @@ struct CustomMarker
std::string mNote; std::string mNote;
bool operator == (const CustomMarker& other) bool operator == (const CustomMarker& other) const
{ {
return mNote == other.mNote && mCell == other.mCell && mWorldX == other.mWorldX && mWorldY == other.mWorldY; return mNote == other.mNote && mCell == other.mCell && mWorldX == other.mWorldX && mWorldY == other.mWorldY;
} }