Lua bytecode builder, cdrom fixes

This commit is contained in:
Jan Racek
2026-03-28 19:41:53 +01:00
parent 275b4e891d
commit 61fbca17a7
5 changed files with 555 additions and 15 deletions

View File

@@ -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)