mirror of
https://github.com/godotengine/godot.git
synced 2024-11-27 09:16:35 +08:00
Merge pull request #1438 from Spooner/fix_isometric_demo
Fix isometric demo
This commit is contained in:
commit
ca30c87019
Binary file not shown.
@ -74,7 +74,7 @@ Error FileAccessUnix::_open(const String& p_path, int p_mode_flags) {
|
||||
else if (p_mode_flags==WRITE)
|
||||
mode_string="wb";
|
||||
else if (p_mode_flags==READ_WRITE)
|
||||
mode_string="wb+";
|
||||
mode_string="rb+";
|
||||
else
|
||||
return ERR_INVALID_PARAMETER;
|
||||
|
||||
|
@ -71,7 +71,7 @@ Error FileAccessWindows::_open(const String& p_filename, int p_mode_flags) {
|
||||
else if (p_mode_flags==WRITE)
|
||||
mode_string=L"wb";
|
||||
else if (p_mode_flags==READ_WRITE)
|
||||
mode_string=L"wb+";
|
||||
mode_string=L"rb+";
|
||||
else
|
||||
return ERR_INVALID_PARAMETER;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user