diff options
| author | Trashguy <trashguy@gmail.com> | 2024-10-11 12:21:42 -0400 |
|---|---|---|
| committer | Spartan322 <Megacake1234@gmail.com> | 2024-10-13 15:05:24 -0400 |
| commit | 9901f655fb46bd345770ad5f4a1638c4051b1816 (patch) | |
| tree | bb22b4881145f122568c8f2e51e912078ad1b4fc /core/io/compression.cpp | |
| parent | 6699ae7897658e44efc3cfb2cba91c11a8f5aa6a (diff) | |
| download | redot-engine-9901f655fb46bd345770ad5f4a1638c4051b1816.tar.gz | |
Rebrand Godot 4.3 to Redot
Diffstat (limited to 'core/io/compression.cpp')
| -rw-r--r-- | core/io/compression.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/io/compression.cpp b/core/io/compression.cpp index 4e4627c40b..74e450c117 100644 --- a/core/io/compression.cpp +++ b/core/io/compression.cpp @@ -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: { @@ -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. |
