Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/supermerill/SuperSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'xs/xsp/GCode.xsp')
-rw-r--r--xs/xsp/GCode.xsp4
1 files changed, 2 insertions, 2 deletions
diff --git a/xs/xsp/GCode.xsp b/xs/xsp/GCode.xsp
index 5bc1bf84f..7f17a3a12 100644
--- a/xs/xsp/GCode.xsp
+++ b/xs/xsp/GCode.xsp
@@ -129,9 +129,9 @@
void set_first_layer(bool value)
%code{% THIS->first_layer = value; %};
- unsigned int elapsed_time()
+ float elapsed_time()
%code{% RETVAL = THIS->elapsed_time; %};
- void set_elapsed_time(unsigned int value)
+ void set_elapsed_time(float value)
%code{% THIS->elapsed_time = value; %};
bool last_pos_defined();