SCREEN TOO SMALL
SCREEN TOO SMALL
DURING THE DOWNLOAD IT SAYS THAT THE SCREEN IS TOO SMALL AND I DONT KNOW WHAT TO DO
- Paul Norman
- Site Admin
- Posts: 847
- Joined: Thu 21 May, 2009 4:30 pm
- Location: Bognor Regis, England
- Contact:
Re: SCREEN TOO SMALL
Which game/system are you running on?
Re: SCREEN TOO SMALL
TITLEBOUT 2013 WINDOWS 7
- Paul Norman
- Site Admin
- Posts: 847
- Joined: Thu 21 May, 2009 4:30 pm
- Location: Bognor Regis, England
- Contact:
Re: SCREEN TOO SMALL
oh, I assume you have a 1024x768 monitor. This is below the min screen size supported by the game. However you should still be able to run the game and the screen will be a little squashed. In some cases you might not see the entire button at the bottom of the screen.
My laptop that I used to build/develop TB2013 has a 768 height screen so I have been using the game with these limitations myself. I don't find them a problem...
My laptop that I used to build/develop TB2013 has a 768 height screen so I have been using the game with these limitations myself. I don't find them a problem...
Re: SCREEN TOO SMALL
It has downloaded with 1093 width and 614 height and I cant seem to change it.
Re: SCREEN TOO SMALL
Is that it am I actually not going to get a resolution
- Paul Norman
- Site Admin
- Posts: 847
- Joined: Thu 21 May, 2009 4:30 pm
- Location: Bognor Regis, England
- Contact:
Re: SCREEN TOO SMALL
I thought you were up and running... What happens if you ignore the screen size warning and install the game anyway? What happens when you start the game? (please give me exact wording of any errors seen)
in the code the window min limit is set by this line of code:
So as you can see your screen of 1093x614 is bigger than the min size the game supports of 1024x600. This means the game should start and run.
in the code the window min limit is set by this line of code:
Code: Select all
if( new_width >= 1024 && new_height >= 600 )