From 8599b071139303eb9b994b3b6450aa3de885ecc7 Mon Sep 17 00:00:00 2001 From: Linus Nielsen Feltzing Date: Sat, 4 Feb 2006 20:13:06 +0000 Subject: Fixed the codec loading problem in the Win32 SDL simulator git-svn-id: svn://svn.rockbox.org/rockbox/trunk@8563 a1c6a512-1295-4272-9138-f99709370657 --- uisimulator/common/io.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/uisimulator/common/io.c b/uisimulator/common/io.c index e18d8e6a57..127e8e3e2a 100644 --- a/uisimulator/common/io.c +++ b/uisimulator/common/io.c @@ -323,7 +323,7 @@ void *sim_codec_load_ram(char* codecptr, int size, /* We have to create the dynamic link library file from ram so we could simulate the codec loading. */ - fd = open(path, O_WRONLY | O_CREAT | O_TRUNC, S_IRWXU); + fd = open(path, O_WRONLY | O_CREAT | O_TRUNC | O_BINARY, S_IRWXU); if (fd < 0) { DEBUGF("failed to open for write: %s\n", path); return NULL; -- cgit v1.2.3