AreaMap2D getHeight fix

Fix typo and return sizeY.
This commit is contained in:
Richard Try
2024-12-07 05:42:47 +03:00
committed by GitHub
parent 61b73bfabd
commit 42439de3d6
+1 -1
View File
@@ -180,7 +180,7 @@ namespace util {
}
TCoord getHeight() const {
return sizeX;
return sizeY;
}
const std::vector<T>& getBuffer() const {