From 711017acf4d487cd68c470917c4cb19a12145d16 Mon Sep 17 00:00:00 2001 From: zilmar Date: Mon, 13 Mar 2017 05:26:36 +1100 Subject: [PATCH] [Glide64] Remove unused offset_x, offset_y, scale_x, scale_y --- Source/Glide64/Settings.cpp | 4 ---- Source/Glide64/Settings.h | 2 -- 2 files changed, 6 deletions(-) diff --git a/Source/Glide64/Settings.cpp b/Source/Glide64/Settings.cpp index cdf2aab33..856a7514e 100644 --- a/Source/Glide64/Settings.cpp +++ b/Source/Glide64/Settings.cpp @@ -60,10 +60,6 @@ CSettings::CSettings() : m_wfmode(wfmode_VertexColors), // Special fixes -offset_x(0), -offset_y(0), -scale_x(0), -scale_y(0), fast_crc(0), alt_tex_size(0), use_sts1_only(0), diff --git a/Source/Glide64/Settings.h b/Source/Glide64/Settings.h index 44b85599f..c46bb3f69 100644 --- a/Source/Glide64/Settings.h +++ b/Source/Glide64/Settings.h @@ -235,8 +235,6 @@ public: inline wfmode_t wfmode(void) const { return m_wfmode; } // Special fixes - int offset_x, offset_y; - int scale_x, scale_y; int fast_crc; int alt_tex_size; int use_sts1_only;