diff options
author | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2013-01-22 16:46:29 +0000 |
---|---|---|
committer | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2013-01-22 16:46:29 +0000 |
commit | eae942b7b4ed36f5f43edd20ae6abd9e923b96c0 (patch) | |
tree | 1b265676adc167d6f30f80ca98e56d37b182b806 /cyclone/hammer/seq.c | |
parent | c025f3253dd48185ee556e4ef32cce794be11904 (diff) |
merge in Win32 UTF-8 file/path support
svn path=/trunk/externals/miXed/; revision=16950
Diffstat (limited to 'cyclone/hammer/seq.c')
-rw-r--r-- | cyclone/hammer/seq.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/cyclone/hammer/seq.c b/cyclone/hammer/seq.c index ce8c0a4..fd5688d 100644 --- a/cyclone/hammer/seq.c +++ b/cyclone/hammer/seq.c @@ -1017,9 +1017,7 @@ static void seq_doread(t_seq *x, t_symbol *fn, int creation) /* loading during object creation -- CHECKED no warning if a file specified with an arg does not exist, LATER rethink */ FILE *fp; - char path[MAXPDSTRING]; - sys_bashfilename(buf, path); - if (!(fp = fopen(path, "r"))) + if (!(fp = sys_fopen(buf, "r"))) return; fclose(fp); } |