From 7c6e07024436032169ba522e358a03f606ae1491 Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Wed, 27 Jan 2016 11:19:30 +0100 Subject: [PATCH] - fixed: line spacing was taken from a different variable in conversation display and mouse coordinate code. --- src/p_conversation.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/p_conversation.cpp b/src/p_conversation.cpp index ab6cf5883..3111bc2d6 100644 --- a/src/p_conversation.cpp +++ b/src/p_conversation.cpp @@ -848,7 +848,7 @@ public: bool MouseEvent(int type, int x, int y) { int sel = -1; - int fh = SmallFont->GetHeight(); + int fh = OptionSettings.mLinespacing; // convert x/y from screen to virtual coordinates, according to CleanX/Yfac use in DrawTexture x = ((x - (screen->GetWidth() / 2)) / CleanXfac) + 160;