Skip to content

Commit

Permalink
Fixed: QString formatting in a Partitioner exception
Browse files Browse the repository at this point in the history
  • Loading branch information
skyjake committed Aug 29, 2012
1 parent 6913254 commit 9e8c16e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doomsday/engine/portable/src/map/bsp/partitioner.cpp
Expand Up @@ -1689,7 +1689,7 @@ struct Partitioner::Instance
if(!sanityCheckHasRealHEdge(leaf))
{
throw de::Error("Partitioner::clockwiseLeaf",
QString("BSP Leaf 0x%p has no linedef-linked half-edge!").arg(de::dintptr(leaf), 0, 16));
QString("BSP Leaf 0x%1 has no linedef-linked half-edge").arg(dintptr(leaf), 0, 16));
}
}

Expand Down

0 comments on commit 9e8c16e

Please sign in to comment.