switch (ch)
{
case '~' || 177:
tile->tileType = TILE_NONE;
return true;
case '@' || 219: //error here: '@'
tile->tileType = TILE_WALL;
return true;
}
The error reads: "case value '1' already used"
.....what the hell??
I've tried to clean the solution, restarted, used another PC. I'm "this close" to just reinstalling VS. Any idea what is happening?