Skip to content
Snippets Groups Projects
Commit 19badb90 authored by Bariatti Francesco's avatar Bariatti Francesco
Browse files

Changed move display

parent 67478acb
No related branches found
No related tags found
No related merge requests found
......@@ -156,9 +156,7 @@ namespace game
string morpion::move_to_string(uint16_t m) const
{
uint8_t row = m/3;
uint8_t col = m%3;
return "( "+std::to_string(row)+", "+std::to_string(col)+" )";
return std::to_string(m);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment