From 5c1f074e4db5d2e701011c60cc3e6f486fb2ecf4 Mon Sep 17 00:00:00 2001 From: Jed Barber Date: Fri, 20 Apr 2018 02:24:26 +1000 Subject: Polishing some Valuators --- src/c_fl_adjuster.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/c_fl_adjuster.cpp') diff --git a/src/c_fl_adjuster.cpp b/src/c_fl_adjuster.cpp index 36d7858..209058c 100644 --- a/src/c_fl_adjuster.cpp +++ b/src/c_fl_adjuster.cpp @@ -71,10 +71,10 @@ void free_fl_adjuster(ADJUSTER a) { int fl_adjuster_is_soft(ADJUSTER a) { - return reinterpret_cast(a)->soft(); + return reinterpret_cast(a)->soft(); } void fl_adjuster_set_soft(ADJUSTER a, int t) { - reinterpret_cast(a)->soft(t); + reinterpret_cast(a)->soft(t); } -- cgit