Lua bytecode builder, cdrom fixes
This commit is contained in:
@@ -149,6 +149,19 @@ namespace SplashEdit.EditorCode
|
||||
set => EditorPrefs.SetBool(Prefix + "FpsOverlay", value);
|
||||
}
|
||||
|
||||
// --- Renderer sizes ---
|
||||
public static int OtSize
|
||||
{
|
||||
get => EditorPrefs.GetInt(Prefix + "OtSize", 2048 * 4);
|
||||
set => EditorPrefs.SetInt(Prefix + "OtSize", value);
|
||||
}
|
||||
|
||||
public static int BumpSize
|
||||
{
|
||||
get => EditorPrefs.GetInt(Prefix + "BumpSize", 8096 * 16);
|
||||
set => EditorPrefs.SetInt(Prefix + "BumpSize", value);
|
||||
}
|
||||
|
||||
// --- Export settings ---
|
||||
public static float DefaultGTEScaling
|
||||
{
|
||||
@@ -188,7 +201,8 @@ namespace SplashEdit.EditorCode
|
||||
"PCSXReduxPath", "PCSXReduxPCdrvBase", "SerialPort", "SerialBaudRate",
|
||||
"ResWidth", "ResHeight", "DualBuffering", "VerticalLayout",
|
||||
"GTEScaling", "AutoValidate",
|
||||
"LicenseFilePath", "ISOVolumeLabel"
|
||||
"LicenseFilePath", "ISOVolumeLabel",
|
||||
"OtSize", "BumpSize"
|
||||
};
|
||||
|
||||
foreach (string key in keys)
|
||||
|
||||
Reference in New Issue
Block a user