[Glide64] Have Settings.h in Settings.cpp

This commit is contained in:
zilmar 2017-03-13 19:31:38 +11:00
parent 0115f87e62
commit 9557e25522
2 changed files with 2 additions and 13 deletions

View File

@ -70,7 +70,6 @@ the plugin
#include <stddef.h> // offsetof
#include <glide.h>
#include <Common/MemTest.h>
#include <Settings/Settings.h>
#include "GlideExtensions.h"
#include "rdp.h"
#include "Config.h"

View File

@ -1,16 +1,9 @@
#include <Common/StdString.h>
#include <Settings/Settings.h>
#include "Gfx_1.3.h"
#include "ScreenResolution.h"
#include "SettingsID.h"
#ifdef _WIN32
int GetCurrentResIndex(void);
#endif
#ifdef ANDROID
extern uint32_t g_NativeWidth, g_NativeHeight;
#endif
extern int g_width, g_height;
CSettings::CSettings() :
@ -36,7 +29,7 @@ CSettings::CSettings() :
m_aspectmode(Aspect_4x3),
m_frame_buffer(0),
m_fb_crc_mode(fbcrcFast),
//Texture filtering options
//Texture filtering options
m_texture_dir(""),
m_ghq_fltr(TextureFilter_None),
m_ghq_enht(TextureEnht_None),
@ -109,9 +102,6 @@ void CSettings::RegisterSettings(void)
SetModuleName("Glide64");
general_setting(Set_Resolution, "resolution", GetDefaultScreenRes());
#ifdef _WIN32
general_setting(Set_FullScreenRes, "FullScreenRes", GetCurrentResIndex());
#endif
general_setting(Set_vsync, "vsync", true);
general_setting(Set_texenh_options, "texenh_options", false);
general_setting(Set_wrpVRAM, "wrpVRAM", 0);