Resolutions.

So, I’m thinking, my game has a weird resolution; I tried to keep it from stretching because that ruins the artwork, but the more I program, the more I realize this may be a mistake.

http://img14.imageshack.us/img14/7657/newbitmapimagebj.png

That is the maximized window, as you can see, the environment is in the middle but the GUI moves with the resize.

So, I figured I could always redraw the environment to be higher resolution so more of the screen would be filled, but the thing is, some people use HDTVs as monitors, which would lead me back to the same problem.

I guess my question is, should I implement graphics stretching, even though it will distort most of the graphics?

Don’t stretch – it looks crappy, and it’ll make your game look crappy. You just need to either support standard widescreen aspect ratios or put lots of art on the sides to pad out the window.

Okay, thank you.
I just implemented settings to allow users to choose, so now I feel better about it.
OpenGL makes things like this so easy, I added this with literally 40 lines of code. Hahah.

Woh! I am really liking the style right now. It looks great.