From eae942b7b4ed36f5f43edd20ae6abd9e923b96c0 Mon Sep 17 00:00:00 2001 From: Hans-Christoph Steiner Date: Tue, 22 Jan 2013 16:46:29 +0000 Subject: merge in Win32 UTF-8 file/path support svn path=/trunk/externals/miXed/; revision=16950 --- cyclone/hammer/mtr.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'cyclone/hammer/mtr.c') diff --git a/cyclone/hammer/mtr.c b/cyclone/hammer/mtr.c index 15dc5f6..0d04efa 100644 --- a/cyclone/hammer/mtr.c +++ b/cyclone/hammer/mtr.c @@ -488,8 +488,7 @@ static void mtr_doread(t_mtr *x, t_mtrack *target, t_symbol *fname) path[MAXPDSTRING-1] = 0; } /* CHECKED no global message */ - sys_bashfilename(path, path); - if (fp = fopen(path, "r")) + if (fp = sys_fopen(path, "r")) { t_mtrack *tp = 0; char linebuf[MTR_FILEBUFSIZE]; @@ -637,8 +636,7 @@ static void mtr_dowrite(t_mtr *x, t_mtrack *source, t_symbol *fname) path[MAXPDSTRING-1] = 0; } /* CHECKED no global message */ - sys_bashfilename(path, path); - if (fp = fopen(path, "w")) + if (fp = sys_fopen(path, "w")) { /* CHECKED single-track writing does not seem to work (a bug?) */ if (source) failed = mtr_writetrack(x, source, fp); -- cgit v1.2.1