diff options
author | IOhannes m zmölnig <zmoelnig@users.sourceforge.net> | 2005-10-24 17:06:37 +0000 |
---|---|---|
committer | IOhannes m zmölnig <zmoelnig@users.sourceforge.net> | 2005-10-24 17:06:37 +0000 |
commit | 21ae6d6baaefe9a1d4e7a9189b6f8d9ef8cc091c (patch) | |
tree | 7410bd5530f8386ed5e9935c83be3542a1164ed6 /src/mtx_mul~.c | |
parent | 3841ef753439cdf3bfcb37e54d39174cb0426f69 (diff) |
make errors findable with "last error"
svn path=/trunk/externals/iem/iemmatrix/; revision=3764
Diffstat (limited to 'src/mtx_mul~.c')
-rw-r--r-- | src/mtx_mul~.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mtx_mul~.c b/src/mtx_mul~.c index f0f9c44..b45e1dd 100644 --- a/src/mtx_mul~.c +++ b/src/mtx_mul~.c @@ -826,11 +826,11 @@ static void *matrix_multilde_new(t_symbol *s, int argc, t_atom *argv) x->x_compat=0; if(s==gensym("matrix~")){ - error("[matrix~] is deprecated! use [mtx_*~] instead!!"); + pd_error(x,"[matrix~] is deprecated! use [mtx_*~] instead!!"); x->x_compat=2; } else if (s==gensym("matrix_mul_line~")){ - error("[matrix_mul_line~] is deprecated! use [mtx_*~] instead!!"); + pd_error(x,"[matrix_mul_line~] is deprecated! use [mtx_*~] instead!!"); x->x_compat=1; } |