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

github.com/FormerLurker/ArcWelderLib.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFormerLurker <hochgebe@gmail.com>2021-02-06 03:45:34 +0300
committerFormerLurker <hochgebe@gmail.com>2021-02-06 03:45:34 +0300
commit82d1f31458e7de64f2ce2385e0876c0d4e05bb98 (patch)
tree9710c28e2809df5a2b4c7c127d91920b864e4192 /GcodeProcessorLib
parent5e7920dea901011a9144d0cd3fbd7b78624b7d81 (diff)
Fix first comment for UltiGcode
Diffstat (limited to 'GcodeProcessorLib')
-rw-r--r--GcodeProcessorLib/array_list.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/GcodeProcessorLib/array_list.h b/GcodeProcessorLib/array_list.h
index 90e0cb5..53ed43e 100644
--- a/GcodeProcessorLib/array_list.h
+++ b/GcodeProcessorLib/array_list.h
@@ -64,7 +64,7 @@ public:
inline int get_index_position(int index) const
{
- int index_position = index + front_index_;// + max_size_;
+ int index_position = index + front_index_ + max_size_;
while (index_position >= max_size_)
{
index_position = index_position - max_size_;