You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-07 12:30:27 +00:00
Synchronize parameter names in definition and declaration
Fixes #10244.
This commit is contained in:
committed by
Rémi Verschelde
parent
b1ecaaa22b
commit
00f6c85928
@@ -475,9 +475,9 @@ void FileAccess::store_buffer(const uint8_t *p_src, int p_length) {
|
||||
store_8(p_src[i]);
|
||||
}
|
||||
|
||||
Vector<uint8_t> FileAccess::get_file_as_array(const String &p_file) {
|
||||
Vector<uint8_t> FileAccess::get_file_as_array(const String &p_path) {
|
||||
|
||||
FileAccess *f = FileAccess::open(p_file, READ);
|
||||
FileAccess *f = FileAccess::open(p_path, READ);
|
||||
ERR_FAIL_COND_V(!f, Vector<uint8_t>());
|
||||
Vector<uint8_t> data;
|
||||
data.resize(f->get_len());
|
||||
|
||||
Reference in New Issue
Block a user