mirror of
https://github.com/melonDS-emu/melonDS.git
synced 2025-07-23 14:19:55 -06:00
add relevant config entries
This commit is contained in:
@ -40,6 +40,10 @@ int ScreenLayout;
|
||||
int ScreenSizing;
|
||||
int ScreenFilter;
|
||||
|
||||
int ScreenScale;
|
||||
int ScreenRatio;
|
||||
int ScreenScaleMode;
|
||||
|
||||
int LimitFPS;
|
||||
|
||||
int DirectBoot;
|
||||
@ -101,6 +105,10 @@ ConfigEntry PlatformConfigFile[] =
|
||||
{"ScreenSizing", 0, &ScreenSizing, 0, NULL, 0},
|
||||
{"ScreenFilter", 0, &ScreenFilter, 1, NULL, 0},
|
||||
|
||||
{"ScreenScale", 0, &ScreenScale, 0, NULL, 0},
|
||||
{"ScreenRatio", 0, &ScreenRatio, 0, NULL, 0},
|
||||
{"ScreenScaleMode", 0, &ScreenScaleMode, 0, NULL, 0},
|
||||
|
||||
{"LimitFPS", 0, &LimitFPS, 1, NULL, 0},
|
||||
|
||||
{"DirectBoot", 0, &DirectBoot, 1, NULL, 0},
|
||||
|
@ -48,6 +48,10 @@ extern int ScreenLayout;
|
||||
extern int ScreenSizing;
|
||||
extern int ScreenFilter;
|
||||
|
||||
extern int ScreenScale;
|
||||
extern int ScreenRatio;
|
||||
extern int ScreenScaleMode;
|
||||
|
||||
extern int LimitFPS;
|
||||
|
||||
extern int DirectBoot;
|
||||
|
Reference in New Issue
Block a user