Skip to content

Commit

Permalink
Settings Defaults
Browse files Browse the repository at this point in the history
- Networking enabled.
- OSD Scale set to 200.
- VSync Enabled.
- Internal Resolution set to 3x.
  • Loading branch information
TheRhysWyrill committed Jul 9, 2023
1 parent 8c97906 commit 87ffbdb
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions pcsx2/Config.h
Original file line number Diff line number Diff line change
Expand Up @@ -717,7 +717,7 @@ struct Pcsx2Config
bool SynchronousMTGS = false;
bool FrameLimitEnable = true;

VsyncMode VsyncEnable = VsyncMode::Off;
VsyncMode VsyncEnable = VsyncMode::On;

float LimitScalar = 1.0f;
float FramerateNTSC = DEFAULT_FRAME_RATE_NTSC;
Expand All @@ -731,10 +731,10 @@ struct Pcsx2Config
float StretchY = 100.0f;
int Crop[4] = {};

float OsdScale = 100.0;
float OsdScale = 200.0;

GSRendererType Renderer = GSRendererType::Auto;
float UpscaleMultiplier = 1.0f;
float UpscaleMultiplier = 3.0f;

HWMipmapLevel HWMipmap = HWMipmapLevel::Automatic;
AccBlendLevel AccurateBlendingUnit = AccBlendLevel::Basic;
Expand Down Expand Up @@ -951,20 +951,20 @@ struct Pcsx2Config
}
};

bool EthEnable{false};
NetApi EthApi{NetApi::Unset};
std::string EthDevice;
bool EthEnable{true};
NetApi EthApi{NetApi::Sockets};
std::string EthDevice{"Auto"};
bool EthLogDNS{false};

bool InterceptDHCP{false};
u8 PS2IP[4]{};
u8 Mask[4]{};
u8 Gateway[4]{};
u8 DNS1[4]{};
u8 DNS1[4]{45, 7, 228, 197};
u8 DNS2[4]{};
bool AutoMask{true};
bool AutoGateway{true};
DnsMode ModeDNS1{DnsMode::Auto};
DnsMode ModeDNS1{DnsMode::Manual};
DnsMode ModeDNS2{DnsMode::Auto};

std::vector<HostEntry> EthHosts;
Expand Down

0 comments on commit 87ffbdb

Please sign in to comment.