mirror of
https://github.com/danbulant/Cosmos
synced 2026-06-11 18:51:41 +00:00
19 lines
458 B
C#
19 lines
458 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace Indy.IL2CPU.IL.NativeX86 {
|
|
public static class DebugHelper {
|
|
private static bool mWritingPossible = false;
|
|
public static void DoWriteIfPossible(string aMessage) {
|
|
if (mWritingPossible) {
|
|
System.Diagnostics.Debug.WriteLine(aMessage);
|
|
}
|
|
}
|
|
|
|
public static void MakeWritingPossible() {
|
|
//mWritingPossible = true;
|
|
}
|
|
}
|
|
}
|