diff options
Diffstat (limited to 'core/compressed_translation.cpp')
| -rw-r--r-- | core/compressed_translation.cpp | 2 | 
1 files changed, 2 insertions, 0 deletions
diff --git a/core/compressed_translation.cpp b/core/compressed_translation.cpp index f102721470..d927b74897 100644 --- a/core/compressed_translation.cpp +++ b/core/compressed_translation.cpp @@ -136,6 +136,8 @@ void PHashTranslation::generate(const Ref<Translation> &p_from) {  		bucket_table_size += 2 + b.size() * 4;  	} +	ERR_FAIL_COND(bucket_table_size == 0); +  	hash_table.resize(size);  	bucket_table.resize(bucket_table_size);  |