aboutsummaryrefslogtreecommitdiff
path: root/ShiftOS.WinForms/MainMenu/Loading.cs
diff options
context:
space:
mode:
authorwilliam341 <[email protected]>2017-06-18 17:24:09 -0700
committerwilliam341 <[email protected]>2017-06-18 17:24:09 -0700
commitd0d42a2785bee57ce74b81f9784cf7ec0e6c2616 (patch)
tree207ce8214522b3e596516d96b2fc638c1fec61b8 /ShiftOS.WinForms/MainMenu/Loading.cs
parentba80dcf3f80018cbb041b62ad8a40268427d1311 (diff)
downloadshiftos_thereturn-d0d42a2785bee57ce74b81f9784cf7ec0e6c2616.tar.gz
shiftos_thereturn-d0d42a2785bee57ce74b81f9784cf7ec0e6c2616.tar.bz2
shiftos_thereturn-d0d42a2785bee57ce74b81f9784cf7ec0e6c2616.zip
bios screen YAYS
Diffstat (limited to 'ShiftOS.WinForms/MainMenu/Loading.cs')
-rw-r--r--ShiftOS.WinForms/MainMenu/Loading.cs8
1 files changed, 7 insertions, 1 deletions
diff --git a/ShiftOS.WinForms/MainMenu/Loading.cs b/ShiftOS.WinForms/MainMenu/Loading.cs
index c1c0ba0..c69fd3d 100644
--- a/ShiftOS.WinForms/MainMenu/Loading.cs
+++ b/ShiftOS.WinForms/MainMenu/Loading.cs
@@ -17,6 +17,7 @@ namespace ShiftOS.WinForms.MainMenu
{
InitializeComponent();
label.Text = Localization.Parse(label.Text);
+ label1.Text = "AMIBIOS(C)"+ DateTime.Now.Year +" Australian Microtrends, Plc.\nShiftsoft 480-L ACPI BIOS Revision 1002\nCPU : VTC 210-N " + Environment.ProcessorCount + " CPU 1.33GHz\n Speed : 1.337Ghz\n\nPress DEL to run Setup\nPress <F8> for BBS POPUP\nDDR3 Frequency 1337MHz, Dual Channel, Linear Mode\nChecking NVRAM\n\n1337MB OK";
}
private void Loading_FormShown(object sender, EventArgs e)
@@ -25,8 +26,13 @@ namespace ShiftOS.WinForms.MainMenu
// before it starts doing stuff.
var callback = new Timer();
callback.Tick += (o, a) => { Desktop.CurrentDesktop.Show(); Hide(); callback.Stop(); };
- callback.Interval = 1;
+ callback.Interval = 1000; //also so the bios screen shows
callback.Start();
}
+
+ private void label_Click(object sender, EventArgs e)
+ {
+
+ }
}
}