From afab7ef83a5ef7b61c586ae310a87769ba161157 Mon Sep 17 00:00:00 2001
From: DarkGod <darkgod@net-core.org>
Date: Sun, 20 Oct 2019 13:09:24 +0200
Subject: [PATCH] Fixed the black line appearing at the bottom of the screen on
 some resolutions

---
 game/modules/tome/class/uiset/Minimalist.lua | 2 +-
 game/profile-thread/Client.lua               | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/game/modules/tome/class/uiset/Minimalist.lua b/game/modules/tome/class/uiset/Minimalist.lua
index 242e69c355..fd992b895b 100644
--- a/game/modules/tome/class/uiset/Minimalist.lua
+++ b/game/modules/tome/class/uiset/Minimalist.lua
@@ -571,7 +571,7 @@ end
 
 function _M:getMapSize()
 	local w, h = core.display.size()
-	return 0, 0, w, (self.map_h_stop or 80) - 16
+	return 0, 0, w, (self.map_h_stop or 80)
 end
 
 function _M:uiMoveResize(what, button, mx, my, xrel, yrel, bx, by, event, mode, on_change, add_text)
diff --git a/game/profile-thread/Client.lua b/game/profile-thread/Client.lua
index 0b1a832f02..eac0b8fba1 100644
--- a/game/profile-thread/Client.lua
+++ b/game/profile-thread/Client.lua
@@ -23,7 +23,7 @@ local UserChat = require "profile-thread.UserChat"
 
 module(..., package.seeall, class.make)
 
-local debug = false
+local debug = true
 
 local metaport = 2240
 local profilehost = "profiles.te4.org"
-- 
GitLab