mirror of
https://github.com/gbdev/rgbds.git
synced 2026-09-02 03:48:41 +00:00
Remove dead return after no-return fatal call
This commit is contained in:
@@ -649,7 +649,6 @@ void parseExternalPalSpec(char const *arg) {
|
|||||||
// Some parsers read the file in text mode, others in binary mode
|
// 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)) {
|
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));
|
fatal("Failed to open palette file \"%s\": %s", path, strerror(errno));
|
||||||
return;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
search->second.first(path, file);
|
search->second.first(path, file);
|
||||||
|
|||||||
Reference in New Issue
Block a user