Explorar el Código

Fixed scalemode enum

master
Bert hace 14 años
padre
commit
6d4c6daea0
Se han modificado 1 ficheros con 5 adiciones y 5 borrados
  1. +5
    -5
      image.h

+ 5
- 5
image.h Ver fichero

@@ -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;


Cargando…
Cancelar
Guardar