diff --git a/ClassicalSharp/2D/Screens/Menu/PauseScreen.cs b/ClassicalSharp/2D/Screens/Menu/PauseScreen.cs index 1815c3991..5aff546b2 100644 --- a/ClassicalSharp/2D/Screens/Menu/PauseScreen.cs +++ b/ClassicalSharp/2D/Screens/Menu/PauseScreen.cs @@ -27,6 +27,7 @@ namespace ClassicalSharp { widgets[1].Disabled = true; widgets[2].Disabled = true; } + CheckHacksAllowed( null, null ); } void MakeNormal() { diff --git a/ClassicalSharp/Program.cs b/ClassicalSharp/Program.cs index f6e4b354d..a22557b6c 100644 --- a/ClassicalSharp/Program.cs +++ b/ClassicalSharp/Program.cs @@ -51,10 +51,10 @@ namespace ClassicalSharp { width = 640; height = 480; if( device.Width >= 1024 && device.Height >= 768 ) { - //width = 800; height = 600; + width = 800; height = 600; } if( device.Width >= 1920 && device.Height >= 1080 ) { - //width = 1600; height = 900; + width = 1600; height = 900; } }