Skip to content

Commit

Permalink
Fixed defsig variable type, fixes github/flext issue #57
Browse files Browse the repository at this point in the history
  • Loading branch information
grrrr committed Jun 17, 2024
1 parent 2f47096 commit f3b6328
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions source/flbase.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
flext - C++ layer for Max and Pure Data externals
Copyright (c) 2001-2015 Thomas Grill (gr@grrrr.org)
Copyright (c) 2001-2024 Thomas Grill (gr@grrrr.org)
For information on usage and redistribution, and for a DISCLAIMER OF ALL
WARRANTIES, see the file, "license.txt," in this distribution.
*/
Expand Down Expand Up @@ -45,11 +45,11 @@ struct FLEXT_SHARE flext_hdr
/*! \brief The obligatory object header
\note MUST reside at memory offset 0 (no virtual table possible)
*/
t_sigobj obj;
t_sigobj obj;

#if FLEXT_SYS == FLEXT_SYS_PD
//! PD only: float signal holder for pd
float defsig;
t_float defsig;
#endif

#if FLEXT_SYS == FLEXT_SYS_MAX
Expand Down

0 comments on commit f3b6328

Please sign in to comment.