-rw-r--r-- | src/controller/selsave.sqc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/controller/selsave.sqc b/src/controller/selsave.sqc index 2c6005f..8c192ad 100644 --- a/src/controller/selsave.sqc +++ b/src/controller/selsave.sqc @@ -25,11 +25,11 @@ selsave (void) EXEC SQL DELETE FROM vis_selection WHERE gi IS NOT NULL; check_error (__FILE__, __LINE__); - for (unsigned int i = 0; i < ROWS; i++) + for (unsigned int i = 0; i < S.rows; i++) { if (S.selection.set[i] == true) { - strncpy (gi, S.gi_data[i] + 3, sizeof (gi)); + strncpy (gi, S.gi_data + i + 3, sizeof (gi)); EXEC SQL INSERT INTO vis_selection VALUES (:gi); } } |