From eadd3a34b9aaa6cf5c9cf8796f2d0879757d232b Mon Sep 17 00:00:00 2001 From: twinaphex Date: Tue, 9 Dec 2014 17:29:40 +0100 Subject: [PATCH] Remove unused screen_filter2 --- video.c | 2 -- video.h | 9 --------- 2 files changed, 11 deletions(-) diff --git a/video.c b/video.c index 85868b1..a351139 100644 --- a/video.c +++ b/video.c @@ -3397,8 +3397,6 @@ void init_video() video_scale_type screen_scale = scaled_aspect; video_scale_type current_scale = scaled_aspect; video_filter_type screen_filter = filter_bilinear; -video_filter_type2 screen_filter2 = filter2_none; - #ifdef PSP_BUILD diff --git a/video.h b/video.h index 3719cc9..38ade78 100644 --- a/video.h +++ b/video.h @@ -83,18 +83,9 @@ typedef enum filter_bilinear } 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 current_scale; extern video_filter_type screen_filter; -extern video_filter_type2 screen_filter2; void set_gba_resolution(video_scale_type scale);