Skip to content

Commit

Permalink
Updated branding in build errors.
Browse files Browse the repository at this point in the history
  • Loading branch information
MisterPuma80 committed Oct 8, 2024
1 parent 0e98c9d commit 23f2378
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions core/io/compression.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ int Compression::decompress(uint8_t *p_dst, int p_dst_max_size, const uint8_t *p
ERR_FAIL_COND_V(res != BROTLI_DECODER_RESULT_SUCCESS, -1);
return ret_size;
#else
ERR_FAIL_V_MSG(-1, "Godot was compiled without brotli support.");
ERR_FAIL_V_MSG(-1, "Redot was compiled without brotli support.");
#endif
} break;
case MODE_FASTLZ: {
Expand Down Expand Up @@ -267,7 +267,7 @@ int Compression::decompress_dynamic(Vector<uint8_t> *p_dst_vect, int p_max_dst_s
BrotliDecoderDestroyInstance(state);
return Z_OK;
#else
ERR_FAIL_V_MSG(Z_ERRNO, "Godot was compiled without brotli support.");
ERR_FAIL_V_MSG(Z_ERRNO, "Redot was compiled without brotli support.");
#endif
} else {
// This function only supports GZip and Deflate.
Expand Down
6 changes: 3 additions & 3 deletions platform/linuxbsd/os_linuxbsd.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -687,7 +687,7 @@ Vector<String> OS_LinuxBSD::get_system_fonts() const {
}
return ret;
#else
ERR_FAIL_V_MSG(Vector<String>(), "Godot was compiled without fontconfig, system font support is disabled.");
ERR_FAIL_V_MSG(Vector<String>(), "Redot was compiled without fontconfig, system font support is disabled.");
#endif
}

Expand Down Expand Up @@ -793,7 +793,7 @@ Vector<String> OS_LinuxBSD::get_system_font_path_for_text(const String &p_font_n

return ret;
#else
ERR_FAIL_V_MSG(Vector<String>(), "Godot was compiled without fontconfig, system font support is disabled.");
ERR_FAIL_V_MSG(Vector<String>(), "Redot was compiled without fontconfig, system font support is disabled.");
#endif
}

Expand Down Expand Up @@ -849,7 +849,7 @@ String OS_LinuxBSD::get_system_font_path(const String &p_font_name, int p_weight

return String();
#else
ERR_FAIL_V_MSG(String(), "Godot was compiled without fontconfig, system font support is disabled.");
ERR_FAIL_V_MSG(String(), "Redot was compiled without fontconfig, system font support is disabled.");
#endif
}

Expand Down

0 comments on commit 23f2378

Please sign in to comment.