From eaa35ed26d0d5ed8de65aa8abbdb509fd45b5568 Mon Sep 17 00:00:00 2001 From: Rangi Date: Fri, 10 Jul 2026 14:36:46 -0400 Subject: [PATCH] Remove dead `return` after no-return `fatal` call --- src/gfx/pal_spec.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/src/gfx/pal_spec.cpp b/src/gfx/pal_spec.cpp index 05970f89..40a777d0 100644 --- a/src/gfx/pal_spec.cpp +++ b/src/gfx/pal_spec.cpp @@ -649,7 +649,6 @@ void parseExternalPalSpec(char const *arg) { // Some parsers read the file in text mode, others in binary mode if (!file.open(path, search->second.second ? std::ios::in | std::ios::binary : std::ios::in)) { fatal("Failed to open palette file \"%s\": %s", path, strerror(errno)); - return; } search->second.first(path, file);