Skip to content

Commit

Permalink
Fixed|libdeng2: Finding values in an Info file
Browse files Browse the repository at this point in the history
There was a bug when parsing the path of ':' separated identifiers.
  • Loading branch information
skyjake committed Nov 6, 2012
1 parent efb7637 commit 9a7fef8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doomsday/libdeng2/src/data/info.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -459,7 +459,7 @@ Info::Element* Info::BlockElement::findByPath(const String &path) const
if(pos >= 0)
{
name = path.left(pos);
remainder = path.right(pos + 1);
remainder = path.mid(pos + 1);
}
else
{
Expand Down

0 comments on commit 9a7fef8

Please sign in to comment.