author | Don Pellegrino <don@coffee.donpellegrino.com> | 2009-08-14 19:41:49 (GMT) |
---|---|---|
committer | Don Pellegrino <don@coffee.donpellegrino.com> | 2009-08-14 19:41:49 (GMT) |
commit | eef385b8057032a3f5b2d61fcc48878e849793e1 (patch) (unidiff) | |
tree | 799bfb0aa096c38401a5be4c6c505d48c409185b | |
parent | 43cb049cf8216a2cb2df50e60791aaa8059381c7 (diff) | |
download | exp005-eef385b8057032a3f5b2d61fcc48878e849793e1.zip exp005-eef385b8057032a3f5b2d61fcc48878e849793e1.tar.gz exp005-eef385b8057032a3f5b2d61fcc48878e849793e1.tar.bz2 |
Trivial changes for readability.
-rw-r--r-- | src/controller/clear_selection.sqc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/controller/clear_selection.sqc b/src/controller/clear_selection.sqc index f43534c..4549c22 100644 --- a/src/controller/clear_selection.sqc +++ b/src/controller/clear_selection.sqc | |||
@@ -26,7 +26,7 @@ clear_selection (void) | |||
26 | for (unsigned int i = 0; i < S.rows; i++) | 26 | for (unsigned int i = 0; i < S.rows; i++) |
27 | { | 27 | { |
28 | S.selection.set[i] = false; | 28 | S.selection.set[i] = false; |
29 | float* c = S.base_colors_data + (i * 4); | 29 | float *c = S.base_colors_data + (i * 4); |
30 | *c = DEFAULT_COLOR_R; | 30 | *c = DEFAULT_COLOR_R; |
31 | c++; | 31 | c++; |
32 | *c = DEFAULT_COLOR_G; | 32 | *c = DEFAULT_COLOR_G; |