mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-29 00:59:44 -06:00
Revert "Convert to/from old EFB scale numbering"
This reverts commit1fc910b3ea
, replacing the old INI setting EFBScale with a new INI setting called InternalResolution, which has a simpler mapping: | EFBScale | InternalResolution ----------------- | -------------------- | -------------------- Auto (fractional) | 0 | Auto (integral) | 1 | 0 1x | 2 | 1 1.5x | 3 | 2x | 4 | 2 2.5x | 5 | 3x | 6 | 3 4x | 7 | 4 5x | 8 | 5 6x | 9 | 6 All the fractional IRs were removed inf090a943
.
This commit is contained in:
@ -4,18 +4,12 @@
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <optional>
|
||||
#include <string>
|
||||
|
||||
#include "Common/Config/Config.h"
|
||||
|
||||
namespace Config
|
||||
{
|
||||
std::optional<int> ConvertFromLegacyEFBScale(int efb_scale);
|
||||
std::optional<int> ConvertFromLegacyEFBScale(const std::string& efb_scale);
|
||||
int ConvertToLegacyEFBScale(int efb_scale);
|
||||
std::optional<int> ConvertToLegacyEFBScale(const std::string& efb_scale);
|
||||
|
||||
// Configuration Information
|
||||
|
||||
// Graphics.Hardware
|
||||
|
Reference in New Issue
Block a user