Skip to content

Commit

Permalink
Use windowed mode by default on MiNT
Browse files Browse the repository at this point in the history
  • Loading branch information
th-otto committed Mar 16, 2024
1 parent 83c8956 commit bd1ffe6
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions common/settings.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,11 @@ SettingsClass::SettingsClass()
*/
Video.WindowWidth = 640;
Video.WindowHeight = 400;
#ifdef __MINT__
Video.Windowed = true;
#else
Video.Windowed = false;
#endif
Video.Width = 0;
Video.Height = 0;
Video.Boxing = true;
Expand Down

0 comments on commit bd1ffe6

Please sign in to comment.