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) (side-by-side diff) | |
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) for (unsigned int i = 0; i < S.rows; i++) { S.selection.set[i] = false; - float* c = S.base_colors_data + (i * 4); + float *c = S.base_colors_data + (i * 4); *c = DEFAULT_COLOR_R; c++; *c = DEFAULT_COLOR_G; |