in public game1()
you will see this
graphics = new GraphicsDeviceManager(this);
all you need to do from there is add your new settings
graphics.PreferredBackBufferHeight = 400;
graphics.PreferredBackBufferWidth = 600;
EDIT:
I Don't think it matters exactly what size you make your window as long as it is lower then the bounds of your screen rez. In other words, you can't set it to 860*680 if your rez is 800*600
[/quote]
|