Skip to content

Commit

Permalink
- fixed the item stats positioning on the automap.
Browse files Browse the repository at this point in the history
  • Loading branch information
coelckers committed Apr 21, 2017
1 parent 66b5c26 commit 5cb5d26
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wadsrc/static/zscript/statusbar/statusbar.txt
Expand Up @@ -769,7 +769,7 @@ class BaseStatusBar native ui
// Draw item count
if (am_showitems)
{
DrawString(mSmallFont, String.Format("%s\34%c %d/%d", Stringtable.Localize("$AM_ITEMS"), crdefault+65, level.found_items, level.total_items), (1, y), 0, highlight);
DrawString(mSmallFont, String.Format("%s\34%c %d/%d", Stringtable.Localize("$AM_ITEMS"), crdefault+65, level.found_items, level.total_items), (texdist, y), 0, highlight);
}
}

Expand Down

0 comments on commit 5cb5d26

Please sign in to comment.