Parcourir la source

math: fix incorrect maths in Array2D.

undefined
Sam Hocevar il y a 10 ans
Parent
révision
2ff9a91085
1 fichiers modifiés avec 2 ajouts et 2 suppressions
  1. +2
    -2
      src/lol/math/array2d.h

+ 2
- 2
src/lol/math/array2d.h Voir le fichier

@@ -61,7 +61,7 @@ public:
ASSERT(pos.x < m_size.x);
ASSERT(pos.y < m_size.y);

int n = pos.y * m_size.y + pos.x;
int n = pos.y * m_size.x + pos.x;
ASSERT(n >= 0);
ASSERT(n < this->m_count);

@@ -75,7 +75,7 @@ public:
ASSERT(pos.x < m_size.x);
ASSERT(pos.y < m_size.y);

int n = pos.y * m_size.y + pos.x;
int n = pos.y * m_size.x + pos.x;
ASSERT(n >= 0);
ASSERT(n < this->m_count);



Chargement…
Annuler
Enregistrer