From fba2d121b4f590d2c4f4ee1dd0eb4e2d712181d2 Mon Sep 17 00:00:00 2001 From: "Bil Bas (Spooner)" Date: Mon, 16 Feb 2015 20:59:16 +0000 Subject: Corrected behaviour of File.READ_WRITE mode (fixes #378) --- drivers/unix/file_access_unix.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'drivers/unix') diff --git a/drivers/unix/file_access_unix.cpp b/drivers/unix/file_access_unix.cpp index 7f85526852..2f91eee90e 100644 --- a/drivers/unix/file_access_unix.cpp +++ b/drivers/unix/file_access_unix.cpp @@ -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; -- cgit v1.2.3