diff --git a/Docs/Intros/MS5/index.html b/Docs/Intros/MS5/index.html index 9256902d4..d17bfcbd7 100644 --- a/Docs/Intros/MS5/index.html +++ b/Docs/Intros/MS5/index.html @@ -100,6 +100,17 @@ debugger and use additional functionality. It is accessed using the Debugger class in the Cosmos.Debug namespace in the Cosmos.Kernel assembly. This assembly is used by all Cosmos projects.
+Debugger.Break();+
+ Break can be used to issue a code based break. Visual Studio will break on the + line after this statement. Since Cosmos does not support conditional breaks in + the IDE yet, code base breaks are very useful for implementing such. For + example:
+if (x == 5) {
+ Debugger.Break();
+}
+ +
diff --git a/source2/Debug/Cosmos.Debug.VSDebugEngine/AD7.Impl/AD7Process.cs b/source2/Debug/Cosmos.Debug.VSDebugEngine/AD7.Impl/AD7Process.cs index 3379c9a7a..327c4cd20 100644 --- a/source2/Debug/Cosmos.Debug.VSDebugEngine/AD7.Impl/AD7Process.cs +++ b/source2/Debug/Cosmos.Debug.VSDebugEngine/AD7.Impl/AD7Process.cs @@ -92,7 +92,7 @@ namespace Cosmos.Debug.VSDebugEngine { if (String.IsNullOrEmpty(xVmwPath) || !File.Exists(xVmwPath)) { - MessageBox.Show("VWMare not installed, probably going to crash now!", "Cosmos DebugEngine", MessageBoxButtons.OK, MessageBoxIcon.Error); + MessageBox.Show("VWMare is not installed, probably going to crash now!", "Cosmos DebugEngine", MessageBoxButtons.OK, MessageBoxIcon.Error); } }