Definition at line 85 of file tile2x2.cpp.
85 {
86 uint8_t max = 0;
87 max =
MAX(max,
at(0, 0));
88 max =
MAX(max,
at(0, 1));
89 max =
MAX(max,
at(1, 0));
90 max =
MAX(max,
at(1, 1));
91 return max;
92}
uint8_t & at(int x, int y)
References at(), and MAX.