mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-29 00:59:44 -06:00
Convert to/from old EFB scale numbering
This commit is contained in:
@ -4,12 +4,18 @@
|
||||
|
||||
#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