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
@@ -53,9 +53,9 @@ void FileAccessWindows::check_errors() const {
|
||||
}
|
||||
}
|
||||
|
||||
Error FileAccessWindows::_open(const String &p_filename, int p_mode_flags) {
|
||||
Error FileAccessWindows::_open(const String &p_path, int p_mode_flags) {
|
||||
|
||||
String filename = fix_path(p_filename);
|
||||
String filename = fix_path(p_path);
|
||||
if (f)
|
||||
close();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user