From 9bf5a157e7c35725ab1385faa60a6eb19449349e Mon Sep 17 00:00:00 2001 From: Colin McMillen Date: Wed, 21 Jul 2021 15:14:51 -0400 Subject: [PATCH] make debug toasts show up below the player's hearts --- Shared/Debug.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Shared/Debug.cs b/Shared/Debug.cs index a4d0387..979ce5c 100644 --- a/Shared/Debug.cs +++ b/Shared/Debug.cs @@ -131,7 +131,7 @@ namespace SemiColinGames { // https://docs.microsoft.com/en-us/windows/uwp/design/devices/designing-for-tv#tv-safe-area // Can test this on actual Xbox via: // Settings > Launch Settings > General > TV & Display Options > Resolution > 720p. - int y = 27; + int y = 57; foreach (var toast in toasts) { spriteBatch.DrawString(Textures.DebugFont, toast, new Vector2(48, y), Color.Teal); y += 30;