Skip to content

Commit da9fe64

Browse files
BlockMenPilzAdam
authored andcommittedSep 10, 2013
Fix hotbar padding at bottom
1 parent 4feea0a commit da9fe64

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/hud.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -337,7 +337,7 @@ void Hud::drawHotbar(v2s32 centerlowerpos, s32 halfheartcount, u16 playeritem, s
337337
s32 hotbar_itemcount = player->hud_hotbar_itemcount;
338338
s32 padding = hotbar_imagesize / 12;
339339
s32 width = hotbar_itemcount * (hotbar_imagesize + padding * 2);
340-
v2s32 pos = centerlowerpos - v2s32(width / 2, hotbar_imagesize + padding * 2);
340+
v2s32 pos = centerlowerpos - v2s32(width / 2, hotbar_imagesize + padding * 3);
341341

342342
if (player->hud_flags & HUD_FLAG_HOTBAR_VISIBLE)
343343
drawItem(pos, hotbar_imagesize, hotbar_itemcount, mainlist, playeritem + 1, 0);

0 commit comments

Comments
 (0)
Please sign in to comment.