From 6dc5194895b6bd61d19bf5c95021471784084325 Mon Sep 17 00:00:00 2001 From: untodesu Date: Tue, 1 Jul 2025 03:23:05 +0500 Subject: I forgot to set these to true in .clang-format https://files.catbox.moe/909rig.gif --- game/shared/splash.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'game/shared/splash.cc') diff --git a/game/shared/splash.cc b/game/shared/splash.cc index 0cd5f50..1ff3e8f 100644 --- a/game/shared/splash.cc +++ b/game/shared/splash.cc @@ -35,7 +35,8 @@ static void splash_init_filename(const char* filename) while(std::getline(stream, line)) splash_lines.push_back(sanitize_line(line)); splash_random.seed(std::random_device()()); - } else { + } + else { splash_lines.push_back(std::format("{}: {}", filename, PHYSFS_getErrorByCode(PHYSFS_getLastErrorCode()))); splash_random.seed(std::random_device()()); } -- cgit