aboutsummaryrefslogtreecommitdiff
path: root/externals/grill/flext/source/flatom_pr.cpp
diff options
context:
space:
mode:
authorThomas Grill <xovo@users.sourceforge.net>2003-08-19 02:37:30 +0000
committerThomas Grill <xovo@users.sourceforge.net>2003-08-19 02:37:30 +0000
commit47786f06588886651bb6400269fe5c310313c29d (patch)
tree755f995f89a6414bc436bf7a53d35ff2912e6586 /externals/grill/flext/source/flatom_pr.cpp
parent3dccb560ee6e3a5c6a1d588aabcf168df0f9ae43 (diff)
""
svn path=/trunk/; revision=884
Diffstat (limited to 'externals/grill/flext/source/flatom_pr.cpp')
-rw-r--r--externals/grill/flext/source/flatom_pr.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/externals/grill/flext/source/flatom_pr.cpp b/externals/grill/flext/source/flatom_pr.cpp
index e90892e8..20ae6cad 100644
--- a/externals/grill/flext/source/flatom_pr.cpp
+++ b/externals/grill/flext/source/flatom_pr.cpp
@@ -33,13 +33,15 @@ bool flext::PrintAtom(const t_atom &a,char *buf,int bufsz)
}
else if(IsPointer(a)) {
STD::sprintf(buf,"%p",GetPointer(a));
- }
+ }
+#if FLEXT_SYS == FLEXT_SYS_PD
else if(a.a_type == A_DOLLAR) {
STD::sprintf(buf,"$%d",a.a_w.w_index);
}
else if(a.a_type == A_DOLLSYM) {
STD::sprintf(buf,"$%s",GetString(a));
}
+#endif
else {
ERRINTERNAL();
ok = false;