From b6f67a8c10574ab07aab25e263ae29bb21e42e87 Mon Sep 17 00:00:00 2001 From: Linus Nielsen Feltzing Date: Thu, 8 Jul 2004 05:50:20 +0000 Subject: The win32 open() was called with the wrong flags git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4845 a1c6a512-1295-4272-9138-f99709370657 --- uisimulator/common/io.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/uisimulator/common/io.c b/uisimulator/common/io.c index e5b2f9228d..cb8064c7d7 100644 --- a/uisimulator/common/io.c +++ b/uisimulator/common/io.c @@ -54,6 +54,7 @@ struct mydir { typedef struct mydir MYDIR; +#ifndef WIN32 static unsigned int rockbox2sim(int opt) { int newopt = 0; @@ -70,7 +71,7 @@ static unsigned int rockbox2sim(int opt) return newopt; } - +#endif MYDIR *sim_opendir(const char *name) { @@ -132,14 +133,16 @@ void sim_closedir(MYDIR *dir) int sim_open(const char *name, int o) { char buffer[256]; /* sufficiently big */ +#ifndef WIN32 int opts = rockbox2sim(o); +#endif if(name[0] == '/') { sprintf(buffer, "%s%s", SIMULATOR_ARCHOS_ROOT, name); debugf("We open the real file '%s'\n", buffer); #ifdef WIN32 - return (open)(buffer, opts); + return (open)(buffer, o); #else return (open)(buffer, opts, 0666); #endif -- cgit v1.2.3