aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHans-Christoph Steiner <eighthave@users.sourceforge.net>2013-01-22 16:51:28 +0000
committerHans-Christoph Steiner <eighthave@users.sourceforge.net>2013-01-22 16:51:28 +0000
commit1fa346336ecaab6f5598e79e92da3767e51a08b8 (patch)
treea05003edc583e594938efae78ee4afbb205bb522
parentce52649fba05a490145c233a600a5f3ba0baaf7e (diff)
merge in Win32 UTF-8 file/path support
svn path=/trunk/externals/creb/; revision=16951
-rw-r--r--modules/bmatrix~.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/bmatrix~.c b/modules/bmatrix~.c
index 81802ed..8ba9d8e 100644
--- a/modules/bmatrix~.c
+++ b/modules/bmatrix~.c
@@ -49,7 +49,7 @@ static void matrix_load(t_matrix *x, t_symbol *s)
if(s && s->s_name)
{
post("matrix: loading %s",s->s_name);
- if(matrix = fopen(s->s_name, "r"))
+ if(matrix = sys_fopen(s->s_name, "r"))
{
int n = x->x_ctl.c_order;
fread(x->x_ctl.c_A, sizeof(t_float), n*n, matrix);