SDL: option to disable TV borders

This commit is contained in:
pelya
2016-03-12 15:31:35 +02:00
parent 92de300ea5
commit c9320ec1af
5 changed files with 16 additions and 47 deletions

View File

@@ -185,6 +185,7 @@ class Settings
out.writeBoolean(Globals.HorizontalOrientation);
out.writeBoolean(Globals.ImmersiveMode);
out.writeBoolean(Globals.AutoDetectOrientation);
out.writeBoolean(Globals.TvBorders);
out.close();
settingsLoaded = true;
@@ -377,6 +378,7 @@ class Settings
Globals.HorizontalOrientation = settingsFile.readBoolean();
Globals.ImmersiveMode = settingsFile.readBoolean();
Globals.AutoDetectOrientation = settingsFile.readBoolean();
Globals.TvBorders = settingsFile.readBoolean();
settingsLoaded = true;