Skip to content

Commit a63334d

Browse files
committed
Wrapper: Revert load, dump to being defer
Otherwhise chaos reigns
1 parent b445f6d commit a63334d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

source/include/FluidMaxWrapper.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2068,7 +2068,7 @@ class FluidMaxWrapper
20682068
template <size_t N>
20692069
static void deferLoad(FluidMaxWrapper* x, t_symbol*, long ac, t_atom* av)
20702070
{
2071-
defer_low(x, (method) doLoad<N>, nullptr, static_cast<short>(ac), av);
2071+
defer(x, (method) doLoad<N>, nullptr, static_cast<short>(ac), av);
20722072
}
20732073

20742074
template <size_t N>
@@ -2120,7 +2120,7 @@ class FluidMaxWrapper
21202120
template <size_t N>
21212121
static void deferDump(FluidMaxWrapper* x, t_symbol*, long ac, t_atom* av)
21222122
{
2123-
defer_low(x, (method) doDump<N>, nullptr, static_cast<short>(ac), av);
2123+
defer(x, (method) doDump<N>, nullptr, static_cast<short>(ac), av);
21242124
}
21252125

21262126
template <size_t N>

0 commit comments

Comments
 (0)