Skip to content

Commit

Permalink
no message
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielMcAssey committed Mar 21, 2014
1 parent f89e47c commit d65d9ef
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,4 @@ SolarFusion/GameData/obj/
SolarFusion/DataPipeline/obj/
SolarFusion/DataPipeline/bin/
SolarFusion/GameData/bin/x86/Debug/GameData.dll
SolarFusion/GameData/bin/
4 changes: 2 additions & 2 deletions SolarFusion/SolarFusion/SolarFusion/Core/Game.cs
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,8 @@ public Game()
this._obj_config.WIN32_CreateNewFile();
#elif XBOX
this._obj_config.X360_CreateNewFile();
this._obj_config.Settings.VIDEO_RES_WIDTH = 1280;
this._obj_config.Settings.VIDEO_RES_HEIGHT = 720;
this._obj_config.Settings.VIDEO_RES_WIDTH = this._obj_graphics.GraphicsDevice.DisplayMode.Width; // Use Full Possible Resolution
this._obj_config.Settings.VIDEO_RES_HEIGHT = this._obj_graphics.GraphicsDevice.DisplayMode.Height;
this._obj_config.Settings.VIDEO_FULLSCREEN = true;
this._obj_config.Settings.VIDEO_ANTIALIASING = true;
this._obj_config.Settings.VIDEO_VSYNC = true;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ public override void render()
/// <param name="e"></param>
void EventTriggerGoToMain(object sender, EventPlayer e)
{
const string tmessage = "Are you sure you want to exit the simulation?";
const string tmessage = "Are you sure you want to exit the game?";
ScreenMsgBox tmsgboxconfirmquit = new ScreenMsgBox(SysConfig.ASSET_CONFIG_MSGBOX_BG, tmessage);
tmsgboxconfirmquit.onAccepted += EventTriggerConfirmGoToMain;
ScreenManager.addScreen(tmsgboxconfirmquit, ControllingPlayer);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,9 @@ public override void update()
/// </summary>
public override void render()
{
//Clear Screen Black
this.ScreenManager.GraphicsDevice.Clear(Color.Black);
//Render the screen
this.appRender();
//Draw our overlay screen fade.
this.renderScreenFade();
Expand Down

0 comments on commit d65d9ef

Please sign in to comment.