Added First Boot Profile Dialog to Main Status Bar

This commit is contained in:
xmikecampx7 2014-07-03 23:08:27 +00:00
parent e1d3d33307
commit 3797fc6fd8
3 changed files with 369 additions and 342 deletions

View File

@ -93,6 +93,7 @@ namespace BizHawk.Client.Common
public bool SupressAskSave = false;
public bool AVI_CaptureOSD = false;
public bool Screenshot_CaptureOSD = false;
public bool FirstBoot = true;
public enum SaveStateTypeE { Default, Binary, Text };
public SaveStateTypeE SaveStateType = SaveStateTypeE.Default;

File diff suppressed because it is too large Load Diff

View File

@ -54,6 +54,11 @@ namespace BizHawk.Client.EmuHawk
StatusBarDiskLightOnImage = Properties.Resources.LightOn;
StatusBarDiskLightOffImage = Properties.Resources.LightOff;
UpdateCoreStatusBarButton();
if (Global.Config.FirstBoot == true)
{
ProfileFirstBootLabel.Visible = true;
}
}
static MainForm()
@ -3285,6 +3290,13 @@ namespace BizHawk.Client.EmuHawk
}
}
private void ProfileFirstBootLabel_Click(object sender, EventArgs e)
{
var profileForm = new ProfileConfig();
profileForm.ShowDialog();
Global.Config.FirstBoot = false;
}
}