aboutsummaryrefslogtreecommitdiff
path: root/core/packed_data_container.h
diff options
context:
space:
mode:
authorJuan Linietsky2017-01-07 18:25:37 -0300
committerJuan Linietsky2017-01-07 18:26:38 -0300
commit2ab83e1abbf5ee6d00e16056a9e9394114026f28 (patch)
tree7efbb375cc4d00d8e8589fcf1b6a1303bec5df2d /core/packed_data_container.h
parent2a38a5eaa844043b846e03d6655f84caf8a31e74 (diff)
downloadgodot-2ab83e1abbf5ee6d00e16056a9e9394114026f28.tar.gz
godot-2ab83e1abbf5ee6d00e16056a9e9394114026f28.tar.zst
godot-2ab83e1abbf5ee6d00e16056a9e9394114026f28.zip
Diffstat (limited to 'core/packed_data_container.h')
-rw-r--r--core/packed_data_container.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/core/packed_data_container.h b/core/packed_data_container.h
index 5e0180a42..f8ff43f9b 100644
--- a/core/packed_data_container.h
+++ b/core/packed_data_container.h
@@ -50,7 +50,7 @@ class PackedDataContainer : public Resource {
};
- DVector<uint8_t> data;
+ PoolVector<uint8_t> data;
int datalen;
@@ -73,8 +73,8 @@ friend class PackedDataContainerRef;
protected:
- void _set_data(const DVector<uint8_t>& p_data);
- DVector<uint8_t> _get_data() const;
+ void _set_data(const PoolVector<uint8_t>& p_data);
+ PoolVector<uint8_t> _get_data() const;
static void _bind_methods();
public: