aboutsummaryrefslogtreecommitdiff
path: root/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicTerminal.cs
diff options
context:
space:
mode:
authorAShifter <[email protected]>2017-06-18 18:39:27 -0700
committerAShifter <[email protected]>2017-06-18 18:39:27 -0700
commitbf7fcf52ad5373e25fbe399f4f1dd1091f53c159 (patch)
tree858cc86e8f02535ff7ec081fb290611d0ff0705f /TimeHACK.Main/OS/Win95/Win95Apps/WinClassicTerminal.cs
parent15f2e1a7e3ec5d85aee4a126144722feeff4682f (diff)
downloadhistacom2-bf7fcf52ad5373e25fbe399f4f1dd1091f53c159.tar.gz
histacom2-bf7fcf52ad5373e25fbe399f4f1dd1091f53c159.tar.bz2
histacom2-bf7fcf52ad5373e25fbe399f4f1dd1091f53c159.zip
Some more terminal work
IT WORKS! IT WWOOOOORRRKKKSS!!! YOu can now use Thread.Sleep(); without issues.
Diffstat (limited to 'TimeHACK.Main/OS/Win95/Win95Apps/WinClassicTerminal.cs')
-rw-r--r--TimeHACK.Main/OS/Win95/Win95Apps/WinClassicTerminal.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicTerminal.cs b/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicTerminal.cs
index d25b409..174c5b4 100644
--- a/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicTerminal.cs
+++ b/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicTerminal.cs
@@ -20,9 +20,7 @@ namespace TimeHACK.OS.Win95.Win95Apps
public WinClassicTerminal()
{
InitializeComponent();
- this.richTextBox1.Font = new Font(TitleScreen.pfc.Families[0], 16F, FontStyle.Regular, GraphicsUnit.Point, ((byte)(0)));
}
- private SoundPlayer startsound;
/// <summary>
/// Write text to the Terminal and create a new line. Very similar to the Win32 Console.WriteLine Function.
/// </summary>
@@ -30,6 +28,7 @@ namespace TimeHACK.OS.Win95.Win95Apps
public void WriteLine(string Text)
{
richTextBox1.AppendText(Text + "\n");
+ richTextBox1.Update();
}
/// <summary>
@@ -39,6 +38,7 @@ namespace TimeHACK.OS.Win95.Win95Apps
public void Write(String Text)
{
richTextBox1.AppendText(Text);
+ richTextBox1.Update();
}
}
}