Skip to content

Commit

Permalink
fix Multiplatform template (#938)
Browse files Browse the repository at this point in the history
  • Loading branch information
nkast authored Nov 30, 2023
1 parent be99f3d commit 1ec2f45
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ public class $ext_safeprojectname$Game : Game

graphics.SupportedOrientations = DisplayOrientation.LandscapeLeft | DisplayOrientation.LandscapeRight;
#if (ANDROID || iOS)
_graphics.IsFullScreen = true;
graphics.IsFullScreen = true;
#endif

}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ public class $ext_safeprojectname$Game : Game

graphics.SupportedOrientations = DisplayOrientation.LandscapeLeft | DisplayOrientation.LandscapeRight;
#if (ANDROID || iOS)
_graphics.IsFullScreen = true;
graphics.IsFullScreen = true;
#endif

}
Expand Down

0 comments on commit 1ec2f45

Please sign in to comment.