Skip to content

Commit 4e78eed

Browse files
committed
Fix spacing between items on inventory list.
1 parent 4a7974c commit 4e78eed

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

client/cl_inv.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -132,10 +132,10 @@ void CL_DrawInventory (void)
132132
else // draw a blinky cursor by the selected item
133133
{
134134
if ( (int)(cls.realtime*10) & 1)
135-
re.DrawChar (x-8 * vid_hudscale->value, y*vid_hudscale->value, 15);
135+
re.DrawChar (x - 8 * vid_hudscale->value, y * vid_hudscale->value, 15);
136136
}
137137
Inv_DrawString (x, y, string);
138-
y += 8;
138+
y += 8 * vid_hudscale->value;
139139
}
140140

141141

0 commit comments

Comments
 (0)