Skip to content

Commit 61fc71a

Browse files
committed
Fix textmode console
1 parent 90de3a7 commit 61fc71a

File tree

2 files changed

+3
-8
lines changed

2 files changed

+3
-8
lines changed

Aura Operating System/Aura_OS/Properties/VersionInfo.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@ namespace Aura_OS
22
{
33
public class VersionInfo
44
{
5-
public static string revision = "180120220343";
5+
public static string revision = "180120220352";
66
}
77
}

Aura Operating System/Aura_Plugs/HAL/Global.cs

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,9 @@ public static class Global
2121

2222
static public void Init(TextScreenBase textScreen, bool InitScrollWheel, bool InitPS2, bool InitNetwork, bool IDEInit)
2323
{
24-
Cosmos.HAL.Global.mDebugger.Send("Before Core.Global.Init");
25-
Cosmos.Core.Global.Init();
26-
2724
PCI.Setup();
2825

29-
if (VBE.IsAvailable())
26+
if (VBEAvailable())
3027
{
3128
Aura_OS.Global.AConsole = new Aura_OS.System.AConsole.GraphicConsole();
3229
}
@@ -35,11 +32,10 @@ static public void Init(TextScreenBase textScreen, bool InitScrollWheel, bool In
3532
Aura_OS.Global.AConsole = new Aura_OS.System.AConsole.VGAConsole(textScreen);
3633
}
3734

38-
Aura_OS.Global.AConsole.Write(("[Aura Operating System v" + Aura_OS.Global.version + " - Made by valentinbreiz and geomtech]\n").ToCharArray());
35+
Console.WriteLine("[Aura Operating System v" + Aura_OS.Global.version + " - Made by valentinbreiz and geomtech]");
3936
Aura_OS.System.CustomConsole.WriteLineInfo("Starting Cosmos kernel...");
4037

4138
Aura_OS.System.CustomConsole.WriteLineOK("PCI Devices Scan");
42-
Aura_OS.System.CustomConsole.WriteLineOK("Plugged Console");
4339

4440
ACPI.Start();
4541
Aura_OS.System.CustomConsole.WriteLineOK("ACPI Initialization");
@@ -57,7 +53,6 @@ static public void Init(TextScreenBase textScreen, bool InitScrollWheel, bool In
5753
Aura_OS.System.CustomConsole.WriteLineOK("Network Devices Initialization");
5854

5955
Aura_OS.System.CustomConsole.WriteLineOK("Kernel successfully initialized!");
60-
6156
}
6257

6358
/// <summary>

0 commit comments

Comments
 (0)