From 6bf58497fe25026cb7adcdf1a408f24c8ba955e5 Mon Sep 17 00:00:00 2001 From: Hans-Christoph Steiner Date: Thu, 17 Jan 2013 23:15:09 +0000 Subject: replace POSIX fopen() with Pd's new sys_fopen() to get cross-platform unicode filename support (Pd-extended 0.43.4/Pd-vanilla 0.44) svn path=/trunk/externals/unauthorized/; revision=16902 --- blinkenlights.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'blinkenlights.c') diff --git a/blinkenlights.c b/blinkenlights.c index 65e02a4..1e49474 100644 --- a/blinkenlights.c +++ b/blinkenlights.c @@ -758,7 +758,7 @@ static void blinkenlights_open(t_blinkenlights *x, t_symbol *sfile) //-------------------------------- - if ( ( x->x_filed = fopen( sfile->s_name, "r" ) ) == NULL ) + if ( ( x->x_filed = sys_fopen( sfile->s_name, "r" ) ) == NULL ) { error( "blinkenlights : cannot open >%s<", sfile->s_name); return; -- cgit v1.2.1