summary refs log tree commit diff
path: root/pkgs/applications/audio/cheesecutter/0001-fix-impure-build-date-display.patch
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/applications/audio/cheesecutter/0001-fix-impure-build-date-display.patch')
-rw-r--r--pkgs/applications/audio/cheesecutter/0001-fix-impure-build-date-display.patch26
1 files changed, 0 insertions, 26 deletions
diff --git a/pkgs/applications/audio/cheesecutter/0001-fix-impure-build-date-display.patch b/pkgs/applications/audio/cheesecutter/0001-fix-impure-build-date-display.patch
deleted file mode 100644
index 2e2746f4341..00000000000
--- a/pkgs/applications/audio/cheesecutter/0001-fix-impure-build-date-display.patch
+++ /dev/null
@@ -1,26 +0,0 @@
-diff --git a/src/ct2util.d b/src/ct2util.d
-index 523cadc..e462b09 100644
---- a/src/ct2util.d
-+++ b/src/ct2util.d
-@@ -105,7 +105,7 @@ int main(string[] args) {
- 	speeds.length = 32;
- 	masks.length = 32;
- 	void printheader() {
--		enum hdr = "CheeseCutter 2 utilities" ~ com.util.versionInfo;
-+		enum hdr = "CheeseCutter 2 utilities";
- 		writefln(hdr);
- 		writefln("\nUsage: \t%s <command> <options> <infile> <-o outfile>",args[0]);
- 		writefln("\t%s import <infile> <infile2> <-o outfile>",args[0]);
-diff --git a/src/ui/ui.d b/src/ui/ui.d
-index e418dda..21af408 100644
---- a/src/ui/ui.d
-+++ b/src/ui/ui.d
-@@ -231,7 +231,7 @@ class Infobar : Window {
- 	  
- 		screen.clrtoeol(0, headerColor);
- 
--		enum hdr = "CheeseCutter 2.9" ~ com.util.versionInfo;
-+		enum hdr = "CheeseCutter 2.9";
- 		screen.cprint(4, 0, 1, headerColor, hdr);
- 		screen.cprint(screen.width - 14, 0, 1, headerColor, "F12 = Help");
- 		int c1 = audio.player.isPlaying ? 13 : 12;