diff options
| author | lempamo <[email protected]> | 2017-04-10 11:51:00 -0400 |
|---|---|---|
| committer | lempamo <[email protected]> | 2017-04-10 11:51:00 -0400 |
| commit | 4652b4fddb29dfb9dcda5c6233bf157c78829acd (patch) | |
| tree | e20e0d6a45e3766446a1d4206ab7590ab275b9b1 | |
| parent | 486d33b73a8beec3c1080cf5c501ceeafcddc4fa (diff) | |
| download | histacom2-4652b4fddb29dfb9dcda5c6233bf157c78829acd.tar.gz histacom2-4652b4fddb29dfb9dcda5c6233bf157c78829acd.tar.bz2 histacom2-4652b4fddb29dfb9dcda5c6233bf157c78829acd.zip | |
minor changes
| -rw-r--r-- | .vs/TimeHACK/v14/.suo | bin | 90624 -> 90624 bytes | |||
| -rw-r--r-- | TimeHACK.Engine/Template/AboutBox95.Designer.cs | 2 | ||||
| -rw-r--r-- | TimeHACK.Engine/WindowManager.cs | 6 |
3 files changed, 4 insertions, 4 deletions
diff --git a/.vs/TimeHACK/v14/.suo b/.vs/TimeHACK/v14/.suo Binary files differindex 3f21ec5..5cca3da 100644 --- a/.vs/TimeHACK/v14/.suo +++ b/.vs/TimeHACK/v14/.suo diff --git a/TimeHACK.Engine/Template/AboutBox95.Designer.cs b/TimeHACK.Engine/Template/AboutBox95.Designer.cs index eeb2948..1a3ff5c 100644 --- a/TimeHACK.Engine/Template/AboutBox95.Designer.cs +++ b/TimeHACK.Engine/Template/AboutBox95.Designer.cs @@ -103,7 +103,7 @@ this.textBox4.Location = new System.Drawing.Point(76, 184); this.textBox4.Name = "textBox4"; this.textBox4.Size = new System.Drawing.Size(250, 16); - this.textBox4.Text = "System Resources: 97% Free"; + this.textBox4.Text = "System Resources: 97% Free"; // // AboutBox95 // diff --git a/TimeHACK.Engine/WindowManager.cs b/TimeHACK.Engine/WindowManager.cs index 611d09e..ceca43f 100644 --- a/TimeHACK.Engine/WindowManager.cs +++ b/TimeHACK.Engine/WindowManager.cs @@ -69,14 +69,14 @@ namespace TimeHACK.Engine return app; } - public WinClassic startAboutBox95(String aboutwhat, String fulltitle, Image appicon) + public WinClassic startAboutBox95(String shortname, String longname, Image appicon) { AboutBox95 uc = new AboutBox95(); uc.pictureBox1.Image = appicon; - uc.textBox1.Text = fulltitle + "\r\nWindows 95\r\nCopyright © 1981-1995 Microsoft Corp."; + uc.textBox1.Text = longname + "\r\nWindows 95\r\nCopyright © 1981-1995 Microsoft Corp."; uc.Font = new Font(pfc.Families[0], 16F, FontStyle.Regular, GraphicsUnit.Point, ((0))); - return startWin95(uc, "About " + aboutwhat, null, false, false); + return startWin95(uc, "About " + shortname, null, false, false); } } } |
