summaryrefslogtreecommitdiff
path: root/lowlevelunit.pas
diff options
context:
space:
mode:
authorErich Eckner <git@eckner.net>2015-11-13 13:50:20 +0100
committerErich Eckner <git@eckner.net>2015-11-13 14:34:58 +0100
commitfffff08da8c4ccc86f30cae996e68a26bc2cfdb5 (patch)
tree01ef52347cc4e50a9ae9091dcaf5f41b5f1a1dd0 /lowlevelunit.pas
parent741166f4b077ca8067611ab933fe0289d60d00cd (diff)
downloadunits-fffff08da8c4ccc86f30cae996e68a26bc2cfdb5.tar.xz
Ausgaben jetzt optional in lowlevelunit.pas
Diffstat (limited to 'lowlevelunit.pas')
-rw-r--r--lowlevelunit.pas7
1 files changed, 5 insertions, 2 deletions
diff --git a/lowlevelunit.pas b/lowlevelunit.pas
index 27d7d85..3472049 100644
--- a/lowlevelunit.pas
+++ b/lowlevelunit.pas
@@ -99,6 +99,9 @@ var
base64Chars: array[0..63] of char;
base64CharsInvers: array[char] of byte;
+const
+ __ausgabenMaske: byte = 0;
+
implementation
uses matheunit;
@@ -469,8 +472,8 @@ end;
procedure gibAus(s: string; ausgaben: byte);
begin
- if odd(ausgaben) then myDebugLnThreadLog(s);
- if odd(ausgaben div 2) then writeln(s);
+ if odd(ausgaben) and not odd(__ausgabenMaske) then myDebugLnThreadLog(s);
+ if odd(ausgaben div 2) and not odd(__ausgabenMaske div 2) then writeln(s);
end;
function strToGen(out gen: tGenauigkeit; s: string): boolean;