You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-22 15:06:45 +00:00
Replace last occurrences of 'ERR_EXPLAIN' with 'ERR_FAIL_*_MSG'
The last remaining ERR_EXPLAIN call is in FreeType code and makes sense as is (conditionally defines the error message). There are a few ERR_EXPLAINC calls for C-strings where String is not included which can stay as is to avoid adding additional _MSGC macros just for that. Part of #31244.
This commit is contained in:
@@ -62,10 +62,8 @@ RES ResourceFormatPKM::load(const String &p_path, const String &p_original_path,
|
||||
f->set_endian_swap(true);
|
||||
|
||||
ETC1Header h;
|
||||
ERR_EXPLAIN("Invalid or Unsupported PKM texture file: " + p_path);
|
||||
f->get_buffer((uint8_t *)&h.tag, sizeof(h.tag));
|
||||
if (strncmp(h.tag, "PKM 10", sizeof(h.tag)))
|
||||
ERR_FAIL_V(RES());
|
||||
ERR_FAIL_COND_V_MSG(strncmp(h.tag, "PKM 10", sizeof(h.tag)), RES(), "Invalid or unsupported PKM texture file: " + p_path + ".");
|
||||
|
||||
h.format = f->get_16();
|
||||
h.texWidth = f->get_16();
|
||||
|
||||
Reference in New Issue
Block a user