From 59764cbbbdc7ebafdcf4f9df71693b094c582195 Mon Sep 17 00:00:00 2001 From: Colin McMillen Date: Sun, 8 Dec 2019 22:19:55 -0500 Subject: [PATCH] change back to Celeste-like camera resolution GitOrigin-RevId: 5b245ec8c0b6744eec670c8d76edd78087bcf328 --- Jumpy.Shared/Camera.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Jumpy.Shared/Camera.cs b/Jumpy.Shared/Camera.cs index 51d88da..d584b50 100644 --- a/Jumpy.Shared/Camera.cs +++ b/Jumpy.Shared/Camera.cs @@ -4,7 +4,7 @@ using System.Text; namespace Jumpy { class Camera { - public const int Width = (int) (320 * 1.5); - public const int Height = (int) (180 * 1.5); + public const int Width = (int) (320 * 1.0); + public const int Height = (int) (180 * 1.0); } }