diff --git a/programs/media/volume/macros.inc b/programs/media/volume/macros.inc deleted file mode 100644 index a5ea74720e..0000000000 --- a/programs/media/volume/macros.inc +++ /dev/null @@ -1,47 +0,0 @@ -macro cmpe a, b, c -{ - cmp a, b - je c -} - -macro cmpne a, b, c -{ - cmp a, b - jne c -} - -macro cmpg a, b, c -{ - cmp a, b - jg c -} - -macro cmpl a, b, c -{ - cmp a, b - jl c -} - -macro cmpnl a, b, c -{ - cmp a, b - jnl c -} - -macro cmpng a, b, c -{ - cmp a, b - jng c -} - -macro cmpge a, b, c -{ - cmp a, b - jge c -} - -macro cmple a, b, c -{ - cmp a, b - jle c -} \ No newline at end of file diff --git a/programs/media/volume/volume.asm b/programs/media/volume/volume.asm index 2737a870fb..8e74730c19 100644 --- a/programs/media/volume/volume.asm +++ b/programs/media/volume/volume.asm @@ -12,7 +12,6 @@ include "../../macros.inc" include "../../proc32.inc" include "../../dll.inc" - include "macros.inc" if DEBUG eq 1 include "../../debug.inc" end if