diff options
author | Jordi Vilalta Prat | 2009-02-22 13:11:43 +0000 |
---|---|---|
committer | Jordi Vilalta Prat | 2009-02-22 13:11:43 +0000 |
commit | b5ce8d93200d60c3a752720300d77773750bf583 (patch) | |
tree | 77e1656645b26cb859c6ddb17843c73622880465 /engines/sci/engine/kpathing.cpp | |
parent | ac409a2ab7a15c08bde95f0647847dc71407ed88 (diff) | |
download | scummvm-rg350-b5ce8d93200d60c3a752720300d77773750bf583.tar.gz scummvm-rg350-b5ce8d93200d60c3a752720300d77773750bf583.tar.bz2 scummvm-rg350-b5ce8d93200d60c3a752720300d77773750bf583.zip |
Whitespace cleanup
svn-id: r38783
Diffstat (limited to 'engines/sci/engine/kpathing.cpp')
-rw-r--r-- | engines/sci/engine/kpathing.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/sci/engine/kpathing.cpp b/engines/sci/engine/kpathing.cpp index 204dae4258..a5546389be 100644 --- a/engines/sci/engine/kpathing.cpp +++ b/engines/sci/engine/kpathing.cpp @@ -65,9 +65,9 @@ namespace Sci { // Visibility matrix #define VIS_MATRIX_ROW_SIZE(N) (((N) / 8) + ((N) % 8 ? 1 : 0)) #define SET_VISIBLE(S, P, Q) ((S)->vis_matrix)[(P) * VIS_MATRIX_ROW_SIZE((S)->vertices) \ - + (Q) / 8] |= (1 << ((Q) % 8)) + + (Q) / 8] |= (1 << ((Q) % 8)) #define IS_VISIBLE(S, P, Q) (((S)->vis_matrix[(P) * VIS_MATRIX_ROW_SIZE((S)->vertices) \ - + (Q) / 8] & (1 << ((Q) % 8))) != 0) + + (Q) / 8] & (1 << ((Q) % 8))) != 0) #define VERTEX_HAS_EDGES(V) ((V) != CLIST_NEXT(V, entries)) |