diff --git a/doomsday/plugins/jdoom/src/st_stuff.c b/doomsday/plugins/jdoom/src/st_stuff.c index 059b80545e..a326eb3e41 100644 --- a/doomsday/plugins/jdoom/src/st_stuff.c +++ b/doomsday/plugins/jdoom/src/st_stuff.c @@ -2558,8 +2558,8 @@ static void drawUIWidgetsForPlayer(player_t* plr) int availHeight; displayRegion.origin.x = displayRegion.origin.y = 0; - displayRegion.size.width = portSize.width / scale; - displayRegion.size.height = portSize.height / scale; + displayRegion.size.width = .5f + portSize.width / scale; + displayRegion.size.height = .5f + portSize.height / scale; if(hud->statusbarActive) { diff --git a/doomsday/plugins/jheretic/src/st_stuff.c b/doomsday/plugins/jheretic/src/st_stuff.c index f94fea6b7c..f9f3ee8bec 100644 --- a/doomsday/plugins/jheretic/src/st_stuff.c +++ b/doomsday/plugins/jheretic/src/st_stuff.c @@ -2431,8 +2431,8 @@ static void drawUIWidgetsForPlayer(player_t* plr) int availHeight; displayRegion.origin.x = displayRegion.origin.y = 0; - displayRegion.size.width = portSize.width / scale; - displayRegion.size.height = portSize.height / scale; + displayRegion.size.width = .5f + portSize.width / scale; + displayRegion.size.height = .5f + portSize.height / scale; if(hud->statusbarActive) { diff --git a/doomsday/plugins/jhexen/src/st_stuff.c b/doomsday/plugins/jhexen/src/st_stuff.c index 92bb74a049..cfa4ddc911 100644 --- a/doomsday/plugins/jhexen/src/st_stuff.c +++ b/doomsday/plugins/jhexen/src/st_stuff.c @@ -3643,8 +3643,8 @@ static void drawUIWidgetsForPlayer(player_t* plr) int posX, posY, availWidth, availHeight; displayRegion.origin.x = displayRegion.origin.y = 0; - displayRegion.size.width = portSize.width / scale; - displayRegion.size.height = portSize.height / scale; + displayRegion.size.width = .5f + portSize.width / scale; + displayRegion.size.height = .5f + portSize.height / scale; if(hud->statusbarActive) {