From 12d44ff9f1e1f1833eebc1fb47a42ebd0bdcca19 Mon Sep 17 00:00:00 2001 From: Ivan Filipenkov Date: Thu, 17 Aug 2023 22:19:45 +0300 Subject: [PATCH] fix debug hud --- DangerousD/GameCore/GUI/DebugHUD.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DangerousD/GameCore/GUI/DebugHUD.cs b/DangerousD/GameCore/GUI/DebugHUD.cs index c37626e..b56d90a 100644 --- a/DangerousD/GameCore/GUI/DebugHUD.cs +++ b/DangerousD/GameCore/GUI/DebugHUD.cs @@ -30,7 +30,7 @@ namespace DangerousD.GameCore.GUI spriteBatch.Begin(); spriteBatch.DrawString( _spriteFont, - Join(",", _text.Select(el => el.Key + ": " + el.Value).ToList()), + Join("\n", _text.Select(el => el.Key + ": " + el.Value).ToList()), new Vector2(10, 10), Color.Cyan, 0,