diff options
author | Rémi Verschelde <remi@verschelde.fr> | 2021-06-03 15:19:07 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-03 15:19:07 +0200 |
commit | 7ab34e1a96ad6210bd583a00df379637b31169d6 (patch) | |
tree | cb7e2f031dd739a9c5aa05ffd4c0d0f6c29f915a /core/io/file_access_pack.h | |
parent | df5a20a310451fb2debb732c690a0cc18c714c2f (diff) | |
parent | 12462d9055bded888ae5ced2e121e667b3e0e0e3 (diff) | |
download | redot-engine-7ab34e1a96ad6210bd583a00df379637b31169d6.tar.gz |
Merge pull request #48889 from Calinou/file-rename-endian-swap
Rename File's `endian_swap` to `big_endian`
Diffstat (limited to 'core/io/file_access_pack.h')
-rw-r--r-- | core/io/file_access_pack.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/io/file_access_pack.h b/core/io/file_access_pack.h index 9747e865c8..7a83fc938f 100644 --- a/core/io/file_access_pack.h +++ b/core/io/file_access_pack.h @@ -171,7 +171,7 @@ public: virtual uint64_t get_buffer(uint8_t *p_dst, uint64_t p_length) const; - virtual void set_endian_swap(bool p_swap); + virtual void set_big_endian(bool p_big_endian); virtual Error get_error() const; |