View Single Post
  #57  
Old 04-23-2011, 01:04 PM
Blue Scorpion Blue Scorpion is offline
Approved Member
 
Join Date: Mar 2011
Posts: 50
Default

Quote:
Originally Posted by Feathered_IV View Post

Biggest problem with the patch is I get a Black Screen when starting up and need to Alt-tab out of the game and hit the launcher icon in the task bar to get back in properly.

I also get the game jumping back to Desktop for a few seconds, just before a mission starts and every time I hit Esc to use a menu in-flight.
/geek mode on

This always happened in full screen, it just happened so quickly previously it went largely unnoticed.

It happens because they create an entirely new window for the menus each time you switch back and forth, rather than store the old screen in a frame buffer when switching between the rendered 3d game and game menus. Ordinarily as a programmer you create one window and store data for each screen that doesn’t have focus, so you can switch seamlessly back and forth between different screens when called.

Why they chose their approach is a little bizarre, and tends to suggests that the ui programmer is new, or out of his depth. Conceivably ,it could be due to their using .net for the games framework(they used java for earlier games), but it is unlikely, as I do not believe they are using so much graphics memory they cannot store the menu screens when they do not have focus.

/geek mode off
Reply With Quote