summaryrefslogtreecommitdiff
path: root/uisimulator/common
diff options
context:
space:
mode:
authorBjörn Stenberg <bjorn@haxx.se>2008-11-24 20:32:57 +0000
committerBjörn Stenberg <bjorn@haxx.se>2008-11-24 20:32:57 +0000
commit819378bf9df8073f951ffcf20d14a46007113392 (patch)
tree8e952d603afc58c3ede7d3e61fa863c87e19bc25 /uisimulator/common
parent68bf125feb7fdbd8a2b4757288774416e74a94b0 (diff)
Renamed simulator disk directory from 'archos' to 'simdisk'.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@19204 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'uisimulator/common')
-rw-r--r--uisimulator/common/io.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/uisimulator/common/io.c b/uisimulator/common/io.c
index 5827508d97..52df94901b 100644
--- a/uisimulator/common/io.c
+++ b/uisimulator/common/io.c
@@ -144,7 +144,7 @@ void dircache_rename(const char *oldpath, const char *newpath);
#endif
-#define SIMULATOR_DEFAULT_ROOT "archos"
+#define SIMULATOR_DEFAULT_ROOT "simdisk"
extern const char *sim_root_dir;
static int num_openfiles = 0;
@@ -585,7 +585,7 @@ int sim_fsync(int fd)
#include <dlfcn.h>
#endif
-#define TEMP_CODEC_FILE "archos/_temp_codec%d.dll"
+#define TEMP_CODEC_FILE SIMULATOR_DEFAULT_ROOT "/_temp_codec%d.dll"
void *sim_codec_load_ram(char* codecptr, int size, void **pd)
{
@@ -657,7 +657,7 @@ void *sim_plugin_load(char *plugin, void **pd)
char buf[MAX_PATH];
#endif
- snprintf(path, sizeof(path), "archos%s", plugin);
+ snprintf(path, sizeof(path), SIMULATOR_DEFAULT_ROOT "%s", plugin);
*pd = NULL;