Quick fix for last commit, resolution should not always be 640x480.

This commit is contained in:
UnknownShadow200 2016-03-05 23:37:02 +11:00
parent bb92001a67
commit 7d72effcba
2 changed files with 3 additions and 2 deletions

View File

@ -27,6 +27,7 @@ namespace ClassicalSharp {
widgets[1].Disabled = true;
widgets[2].Disabled = true;
}
CheckHacksAllowed( null, null );
}
void MakeNormal() {

View File

@ -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;
}
}