summaryrefslogtreecommitdiffstats
path: root/types.h
diff options
context:
space:
mode:
authorBert Münnich <be.muennich@gmail.com>2013-08-10 15:55:18 +0200
committerBert Münnich <be.muennich@gmail.com>2013-08-10 15:55:18 +0200
commit56142bd3bafedf51882b368ab08a580ac98f2619 (patch)
tree5224012a224fe3526105031c07595f9b236b1f70 /types.h
parent7e51c35801f9921685c3acf0d1d17d9370ae4d59 (diff)
downloadnsxiv-56142bd3bafedf51882b368ab08a580ac98f2619.tar.zst
Refactored merged rotation code
Diffstat (limited to 'types.h')
-rw-r--r--types.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/types.h b/types.h
index 2427626..49aa0fd 100644
--- a/types.h
+++ b/types.h
@@ -39,10 +39,10 @@ typedef enum {
} direction_t;
typedef enum {
- ROTATE_90,
- ROTATE_270,
- ROTATE_180
-} rotate_t;
+ DEGREE_90 = 1,
+ DEGREE_180 = 2,
+ DEGREE_270 = 3
+} degree_t;
typedef enum {
FLIP_HORIZONTAL,