Skip to content

Commit

Permalink
Pain
Browse files Browse the repository at this point in the history
  • Loading branch information
Owen2k6 committed Mar 19, 2023
1 parent 2900eba commit a440788
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 11 deletions.
Binary file modified GoOS/.vs/GoOS/v17/.suo
Binary file not shown.
27 changes: 16 additions & 11 deletions GoOS/Settings/ControlPanel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -513,10 +513,10 @@ private static void Run()
int screenWidth = 80;
string title = "RESET IN PROGRESS";
string q = @"GoOS is performing a full format on drive 0:\";
string w = "The system will no longer operate until restarted.";
string w = "Do not turn off your computer.";
string e = "";
string r = "Once restarted, the GoOS setup will launch instantly.";
string t = "";
string r = "This process will take up to a few minutes";
string t = "depending on your Disk size.";
string y = "";
string u = "";
string i = "";
Expand All @@ -539,10 +539,14 @@ private static void Run()
Console.Write(w);
Console.SetCursorPosition(rPos, 10);
Console.Write(r);
Kernel.FS.Disks[0].FormatPartition(0, "FAT", false);
Console.SetCursorPosition(rPos, 11);
Console.Write(t);

Kernel.FS.Disks[0].FormatPartition(0, "FAT32", false);

DrawFrame();
screenWidth = 80;
title = "System Reset";
title = "System reset complete.";
q = "GoOS is now back to factory default settings.";
w = "The system will no longer operate until restarted.";
e = "";
Expand Down Expand Up @@ -591,12 +595,12 @@ private static void Run()
{
DrawFrame();
int screenWidth = 80;
string title = "System Reset";
string q = "GoOS is now back to factory default settings.";
string w = "The system will no longer operate until restarted.";
string title = "error";
string q = @"error";
string w = "error";
string e = "";
string r = "Once restarted, the GoOS setup will launch instantly.";
string t = "";
string r = "error";
string t = monkeyballs.ToString();
string y = "";
string u = "";
string i = "";
Expand All @@ -619,6 +623,8 @@ private static void Run()
Console.Write(w);
Console.SetCursorPosition(rPos, 10);
Console.Write(r);
Console.SetCursorPosition(rPos, 11);
Console.Write(t);
bool pool = true;
while (pool)
{
Expand All @@ -633,7 +639,6 @@ private static void Run()
// i take that as a pogchamp
// you should add the ability to add custom commands and features to your bot somehow
}

}

}
Expand Down

0 comments on commit a440788

Please sign in to comment.