From 4652b4fddb29dfb9dcda5c6233bf157c78829acd Mon Sep 17 00:00:00 2001 From: lempamo Date: Mon, 10 Apr 2017 11:51:00 -0400 Subject: minor changes --- TimeHACK.Engine/WindowManager.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'TimeHACK.Engine/WindowManager.cs') 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); } } } -- cgit v1.2.3