diff options
| author | skal <pascal.massimino@gmail.com> | 2026-01-31 17:41:12 +0100 |
|---|---|---|
| committer | skal <pascal.massimino@gmail.com> | 2026-01-31 17:41:12 +0100 |
| commit | 34b97b178efb1899d5580846c2eb335834a52897 (patch) | |
| tree | d40bcedbd49c5b8e5766a66be355c3acbc8e8351 /tools | |
| parent | 32d26371627638570b74d678ab73deb7b87af8e4 (diff) | |
tools: Improve seq_compiler usage with example command
Adds a copy-pasteable example line to the seq_compiler usage message when run without arguments.
Diffstat (limited to 'tools')
| -rw-r--r-- | tools/seq_compiler.cc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/seq_compiler.cc b/tools/seq_compiler.cc index fabb43f..a04bb5d 100644 --- a/tools/seq_compiler.cc +++ b/tools/seq_compiler.cc @@ -33,6 +33,7 @@ std::string trim(const std::string &str) { int main(int argc, char *argv[]) { if (argc != 3) { std::cerr << "Usage: " << argv[0] << " <input.seq> <output.cc>\n"; + std::cerr << "Example: " << argv[0] << " assets/demo.seq src/timeline.cc\n"; return 1; } |
