Remove unused screen_filter2
This commit is contained in:
parent
1a42217435
commit
eadd3a34b9
2
video.c
2
video.c
|
@ -3397,8 +3397,6 @@ void init_video()
|
||||||
video_scale_type screen_scale = scaled_aspect;
|
video_scale_type screen_scale = scaled_aspect;
|
||||||
video_scale_type current_scale = scaled_aspect;
|
video_scale_type current_scale = scaled_aspect;
|
||||||
video_filter_type screen_filter = filter_bilinear;
|
video_filter_type screen_filter = filter_bilinear;
|
||||||
video_filter_type2 screen_filter2 = filter2_none;
|
|
||||||
|
|
||||||
|
|
||||||
#ifdef PSP_BUILD
|
#ifdef PSP_BUILD
|
||||||
|
|
||||||
|
|
9
video.h
9
video.h
|
@ -83,18 +83,9 @@ typedef enum
|
||||||
filter_bilinear
|
filter_bilinear
|
||||||
} video_filter_type;
|
} video_filter_type;
|
||||||
|
|
||||||
typedef enum
|
|
||||||
{
|
|
||||||
filter2_none,
|
|
||||||
filter2_scale2x,
|
|
||||||
filter2_scale3x,
|
|
||||||
filter2_eagle2x,
|
|
||||||
} video_filter_type2;
|
|
||||||
|
|
||||||
extern video_scale_type screen_scale;
|
extern video_scale_type screen_scale;
|
||||||
extern video_scale_type current_scale;
|
extern video_scale_type current_scale;
|
||||||
extern video_filter_type screen_filter;
|
extern video_filter_type screen_filter;
|
||||||
extern video_filter_type2 screen_filter2;
|
|
||||||
|
|
||||||
void set_gba_resolution(video_scale_type scale);
|
void set_gba_resolution(video_scale_type scale);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue