Fix bad Color::operator== causing GIF frames to be merged incorrectly.

master
Glenn Maynard 6 years ago
parent af82a1e423
commit 5556d4fd65
  1. 2
      sdk/Windows/SMXGif.h

@ -26,7 +26,7 @@ namespace SMXGif
}
bool operator==(const Color &rhs) const
{
return !memcmp(color, rhs.color, sizeof(*color));
return !memcmp(color, rhs.color, sizeof(color));
}
};

Loading…
Cancel
Save