From 2d8e7435bd4e2b50a3356de1e688df2bac564340 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Paul=20B=C3=A9daride?= Date: Tue, 22 Oct 2013 16:28:42 +0200 Subject: [PATCH] Fix action remains bug --- src/surf/surf_interface.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/surf/surf_interface.cpp b/src/surf/surf_interface.cpp index 81163e8514..44867aea9b 100644 --- a/src/surf/surf_interface.cpp +++ b/src/surf/surf_interface.cpp @@ -339,7 +339,7 @@ double surf_action_get_finish_time(surf_action_t action){ } double surf_action_get_remains(surf_action_t action){ - return action->m_remains; + return action->getRemains(); } void surf_action_unref(surf_action_t action){ -- 2.20.1