From 34b97b178efb1899d5580846c2eb335834a52897 Mon Sep 17 00:00:00 2001 From: skal Date: Sat, 31 Jan 2026 17:41:12 +0100 Subject: tools: Improve seq_compiler usage with example command Adds a copy-pasteable example line to the seq_compiler usage message when run without arguments. --- tools/seq_compiler.cc | 1 + 1 file changed, 1 insertion(+) (limited to 'tools') 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] << " \n"; + std::cerr << "Example: " << argv[0] << " assets/demo.seq src/timeline.cc\n"; return 1; } -- cgit v1.2.3