aboutsummaryrefslogtreecommitdiff
path: root/ShiftOS-TheRevival/MainForms/DesktopEnvironment/master
diff options
context:
space:
mode:
Diffstat (limited to 'ShiftOS-TheRevival/MainForms/DesktopEnvironment/master')
-rw-r--r--ShiftOS-TheRevival/MainForms/DesktopEnvironment/master/DesktopManager.vb6
1 files changed, 5 insertions, 1 deletions
diff --git a/ShiftOS-TheRevival/MainForms/DesktopEnvironment/master/DesktopManager.vb b/ShiftOS-TheRevival/MainForms/DesktopEnvironment/master/DesktopManager.vb
index f772031..ed3ebce 100644
--- a/ShiftOS-TheRevival/MainForms/DesktopEnvironment/master/DesktopManager.vb
+++ b/ShiftOS-TheRevival/MainForms/DesktopEnvironment/master/DesktopManager.vb
@@ -23,7 +23,9 @@ Module DesktopManager
If Strings.OnceInfo(6) = "story" Then
SaveGame()
End If
- MsgBox("this is not a bug, this is a feature") 'Use this messagebox to hold Console to stay open, because removing this line closes Console all together for some reason
+ If Strings.ComputerInfo(7) = 1 Then
+ MsgBox("this is not a bug, this is a feature") 'Use this messagebox to hold Console to stay open, because removing this line closes Console all together for some reason
+ End If
Console.Show()
Desktop.Hide()
End Sub
@@ -44,6 +46,8 @@ Module DesktopManager
Select Case Strings.ComputerInfo(7)
Case 1
DuWM_Initiate()
+ Case 2
+ AnusWM_Initiate()
End Select
End Sub
End Module