Forgot to change int to uint8_t in Point constructor

This commit is contained in:
Trygve 2024-05-08 00:28:29 +02:00
parent 08dce8eb7e
commit b3936ae649

View File

@ -36,7 +36,7 @@ class Point
int y;
uint8_t mscase; //!< The case outputted by the algorithm. A number between 0 and 15
bool allocated = false; //!< Used when sorting the points to see if it has been sorted
Point(int x, int y, int mscase){
Point(int x, int y, uint8_t mscase){
this -> x = x;
this -> y = y;
this -> mscase = mscase;