summaryrefslogtreecommitdiff
path: root/audio/mac/files/patch-Source_Console_Console.cpp
blob: 0033ecb30d5a63432a2bb6d26c60ef2a2543751b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
Unixify built-in help.

--- Source/Console/Console.cpp.orig	2025-08-15 06:11:17 UTC
+++ Source/Console/Console.cpp
@@ -135,7 +135,7 @@ static void DisplayProperUsage(FILE * pFile)
 **************************************************************************************************/
 static void DisplayProperUsage(FILE * pFile)
 {
-    fwprintf(pFile, L"Proper Usage: [EXE] [Input File] [Output File] [Mode]\n\n");
+    fwprintf(pFile, L"Proper Usage: [mac] [Input File] [Output File] [Mode]\n\n");
 
     fwprintf(pFile, L"Modes:\n");
     fwprintf(pFile, L"    Compress (fast): '-c1000'\n");
@@ -155,18 +155,18 @@ static void DisplayProperUsage(FILE * pFile)
     fwprintf(pFile, L"    Set the number of threads when compressing or decompressing: -threads=#'\n\n");
 
     fwprintf(pFile, L"Examples:\n");
-    fwprintf(pFile, L"    Compress: mac.exe \"Metallica - One.wav\" \"Metallica - One.ape\" -c2000\n");
-    fwprintf(pFile, L"    Compress: mac.exe \"Metallica - One.wav\" \"Metallica - One.ape\" -c2000 -threads=16 -t \"Artist=Metallica|Album=Black|Name=One\"\n");
-    fwprintf(pFile, L"    Compress: mac.exe \"Metallica - One.wav\" \"Metallica - One.ape\" -c2000 -t \"Artist=Metallica|Album=Black|Name=One\"\n");
-    fwprintf(pFile, L"    Compress: mac.exe \"Metallica - One.wav\" auto -c2000\n");
-    fwprintf(pFile, L"    Transcode from pipe: ffmpeg.exe -i \"Metallica - One.flac\" -f wav - | mac.exe - \"Metallica - One.ape\" -c2000\n");
-    fwprintf(pFile, L"    Decompress: mac.exe \"Metallica - One.ape\" \"Metallica - One.wav\" -d\n");
-    fwprintf(pFile, L"    Decompress: mac.exe \"Metallica - One.ape\" auto -d\n");
-    fwprintf(pFile, L"    Decompress: mac.exe \"Metallica - One.ape\" \"Metallica - One.wav\" -d -threads=16\n");
-    fwprintf(pFile, L"    Verify: mac.exe \"Metallica - One.ape\" -v\n");
-    fwprintf(pFile, L"    Full Verify: mac.exe \"Metallica - One.ape\" -V\n");
-    fwprintf(pFile, L"    Tag: mac.exe \"Metallica - One.ape\" -t \"Artist=Metallica|Album=Black|Name=One|Comment=\\\"This is in quotes\\\"\"\n");
-    fwprintf(pFile, L"    Remove tag: mac.exe \"Metallica - One.ape\" -r\n");
+    fwprintf(pFile, L"    Compress: mac \"Metallica - One.wav\" \"Metallica - One.ape\" -c2000\n");
+    fwprintf(pFile, L"    Compress: mac \"Metallica - One.wav\" \"Metallica - One.ape\" -c2000 -threads=16 -t \"Artist=Metallica|Album=Black|Name=One\"\n");
+    fwprintf(pFile, L"    Compress: mac \"Metallica - One.wav\" \"Metallica - One.ape\" -c2000 -t \"Artist=Metallica|Album=Black|Name=One\"\n");
+    fwprintf(pFile, L"    Compress: mac \"Metallica - One.wav\" auto -c2000\n");
+    fwprintf(pFile, L"    Transcode from pipe: ffmpeg -i \"Metallica - One.flac\" -f wav - | mac - \"Metallica - One.ape\" -c2000\n");
+    fwprintf(pFile, L"    Decompress: mac \"Metallica - One.ape\" \"Metallica - One.wav\" -d\n");
+    fwprintf(pFile, L"    Decompress: mac \"Metallica - One.ape\" auto -d\n");
+    fwprintf(pFile, L"    Decompress: mac \"Metallica - One.ape\" \"Metallica - One.wav\" -d -threads=16\n");
+    fwprintf(pFile, L"    Verify: mac \"Metallica - One.ape\" -v\n");
+    fwprintf(pFile, L"    Full Verify: mac \"Metallica - One.ape\" -V\n");
+    fwprintf(pFile, L"    Tag: mac \"Metallica - One.ape\" -t \"Artist=Metallica|Album=Black|Name=One|Comment=\\\"This is in quotes\\\"\"\n");
+    fwprintf(pFile, L"    Remove tag: mac \"Metallica - One.ape\" -r\n");
 }
 
 /**************************************************************************************************