aboutsummaryrefslogtreecommitdiff
path: root/core/io/resource_format_binary.cpp
diff options
context:
space:
mode:
authorJuan Linietsky2015-12-06 20:22:45 -0300
committerJuan Linietsky2015-12-06 20:22:45 -0300
commit7ba484bc7499a58635cc061b318d003c5f8c371f (patch)
tree8943900d638ea7d4e686057dd43c841f56175829 /core/io/resource_format_binary.cpp
parent17a4ab992ce3282838225f2089684c582898fd96 (diff)
downloadgodot-7ba484bc7499a58635cc061b318d003c5f8c371f.tar.gz
godot-7ba484bc7499a58635cc061b318d003c5f8c371f.tar.zst
godot-7ba484bc7499a58635cc061b318d003c5f8c371f.zip
some fixes
-fix compilation on tres/tscn on MSVC -fixed theora playback performance, closes #3004
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 1a0552e8d..4cd3cd595 100644
--- a/core/io/resource_format_binary.cpp
+++ b/core/io/resource_format_binary.cpp
@@ -905,7 +905,7 @@ void ResourceInteractiveLoaderBinary::open(FileAccess *p_f) {
error=ERR_FILE_UNRECOGNIZED;
ERR_EXPLAIN("Unrecognized binary resource file: "+local_path);
- ERR_FAIL_V();
+ ERR_FAIL();
}
bool big_endian = f->get_32();