aboutsummaryrefslogtreecommitdiffstats
path: root/image.h
diff options
context:
space:
mode:
authorBert <ber.t@gmx.com>2011-01-17 16:41:22 +0100
committerBert <ber.t@gmx.com>2011-01-17 16:41:22 +0100
commit6d4c6daea0e6c3af28ff9a42804178b588f4a8fa (patch)
treebba089ac6faab78470ccf3f9a1519722dade0c74 /image.h
parent01121cea86aa9890b20ba48c674b8085ee799b5c (diff)
downloadnsxiv-6d4c6daea0e6c3af28ff9a42804178b588f4a8fa.tar.zst
Fixed scalemode enum
Diffstat (limited to 'image.h')
-rw-r--r--image.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/image.h b/image.h
index 4edb794..e542c22 100644
--- a/image.h
+++ b/image.h
@@ -19,15 +19,15 @@
#ifndef IMAGE_H
#define IMAGE_H
-typedef enum {
- SCALE_DOWN = 0;
- SCALE_FIT;
- SCALE_ZOOM;
+typedef enum scalemode_e {
+ SCALE_DOWN = 0,
+ SCALE_FIT,
+ SCALE_ZOOM
} scalemode_t;
typedef struct img_s {
- scalemode_t scalemode;
int zoom;
+ scalemode_t scalemode;
int w;
int h;
int x;