From 9a3be468be7f93fd4a84235519a41a6e106e8b7a Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Thu, 10 Oct 2019 13:11:33 +0200 Subject: [PATCH] inforder:: fixed too large HUD --- hypgraph.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/hypgraph.cpp b/hypgraph.cpp index 56446aaf..a8aadde0 100644 --- a/hypgraph.cpp +++ b/hypgraph.cpp @@ -1590,6 +1590,7 @@ EX transmatrix atscreenpos(ld x, ld y, ld size) { V[0][0] = size * 2 * cgi.hcrossf / cgi.crossf; V[1][1] = size * 2 * cgi.hcrossf / cgi.crossf; V[2][2] = current_display->scrdist; + if(S3 == OINF) V[0][0] /= 5, V[1][1] /= 5; } return V;