summaryrefslogtreecommitdiffstats
path: root/core/io/resource_format_binary.cpp
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2019-02-27 09:22:47 +0100
committerGitHub <noreply@github.com>2019-02-27 09:22:47 +0100
commit426a6fdc17227715d397f8c09849ce0673b37e64 (patch)
tree9661566abc64fb26d2f0aeeec1d8fd35d39660f3 /core/io/resource_format_binary.cpp
parent0ba75c195efffcb098ac74440ffb0fa9c85d0d96 (diff)
parente5f665c7187b6934a71169cab5075f899150f17a (diff)
downloadredot-engine-426a6fdc17227715d397f8c09849ce0673b37e64.tar.gz
Merge pull request #26134 from marxin/fix-Wsign-compare
Fix -Wsign-compare warnings.
Diffstat (limited to 'core/io/resource_format_binary.cpp')
-rw-r--r--core/io/resource_format_binary.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/io/resource_format_binary.cpp b/core/io/resource_format_binary.cpp
index 6c48942d72..42070cd132 100644
--- a/core/io/resource_format_binary.cpp
+++ b/core/io/resource_format_binary.cpp
@@ -106,7 +106,7 @@ StringName ResourceInteractiveLoaderBinary::_get_string() {
uint32_t id = f->get_32();
if (id & 0x80000000) {
uint32_t len = id & 0x7FFFFFFF;
- if (len > str_buf.size()) {
+ if ((int)len > str_buf.size()) {
str_buf.resize(len);
}
if (len == 0)