1
0
mirror of https://github.com/vcmi/vcmi.git synced 2025-07-01 00:45:26 +02:00

Remove duplicate semicolons

This commit is contained in:
Alexander Wilms
2024-01-16 19:02:39 +00:00
parent a5e95cce96
commit cca08e29da
20 changed files with 26 additions and 26 deletions

View File

@ -125,7 +125,7 @@ void MapHandler::drawRoad(QPainter & painter, int x, int y, int z)
if(tinfo.roadType) //print road from this tile
{
auto roadName = tinfo.roadType->getJsonKey();;
auto roadName = tinfo.roadType->getJsonKey();
QRect source(0, 0, tileSize, tileSize / 2);
ui8 rotation = (tinfo.extTileFlags >> 4) % 4;
bool hflip = (rotation == 1 || rotation == 3);