include fst URL in the GeometryExtra hash

This commit is contained in:
Thijs Wenker 2019-02-28 23:45:08 +01:00
parent 6aede024f4
commit ff8cb27256

View file

@ -80,7 +80,8 @@ namespace std {
struct hash<GeometryExtra> {
size_t operator()(const GeometryExtra& geometryExtra) const {
size_t result = 0;
hash_combine(result, geometryExtra.mapping.second, geometryExtra.textureBaseUrl, geometryExtra.combineParts);
hash_combine(result, geometryExtra.mapping.first, geometryExtra.mapping.second, geometryExtra.textureBaseUrl,
geometryExtra.combineParts);
return result;
}
};