From 8d937c092443bb4b1bc53559aa2d8f7a02a02b10 Mon Sep 17 00:00:00 2001 From: OpenSauce04 Date: Tue, 22 Oct 2024 21:18:56 +0100 Subject: [PATCH] common_strings.h: Fixed formatting Not sure why this wasn't picked up locally, I ran git-clang-format several times before pushing the commit that introduced it --- src/lime/common_strings.h | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/src/lime/common_strings.h b/src/lime/common_strings.h index 2f3c65693..cb76b05ce 100644 --- a/src/lime/common_strings.h +++ b/src/lime/common_strings.h @@ -11,9 +11,12 @@ constexpr char help_string[] = "-i, --install [path] Install a CIA file at the given path\n" "-p, --movie-play [path] Play a TAS movie located at the given path\n" "-r, --movie-record [path] Record a TAS movie to the given file path\n" - "-a, --movie-record-author [author] Set the author for the recorded TAS movie (to be used alongside --movie-record)\n" - "-n, --no-gui Use the lightweight SDL frontend instead of the usual Qt frontend\n" - "-m, --multiplayer [nick:password@address:port] Nickname, password, address and port for multiplayer\n" + "-a, --movie-record-author [author] Set the author for the recorded TAS movie (to be used " + "alongside --movie-record)\n" + "-n, --no-gui Use the lightweight SDL frontend instead of the usual Qt " + "frontend\n" + "-m, --multiplayer [nick:password@address:port] Nickname, password, address and port for " + "multiplayer\n" "-v, --version Output version information and exit\n" "-w, --windowed Start in windowed mode"; -} \ No newline at end of file +}