bugfixes
This commit is contained in:
@@ -92,29 +92,36 @@ namespace SplashEdit.EditorCode
|
||||
set => EditorPrefs.SetInt(Prefix + "SerialBaudRate", value);
|
||||
}
|
||||
|
||||
// --- VRAM Layout ---
|
||||
// --- VRAM Layout (hardcoded 320x240, dual-buffered, vertical) ---
|
||||
public static int ResolutionWidth
|
||||
{
|
||||
get => EditorPrefs.GetInt(Prefix + "ResWidth", 320);
|
||||
set => EditorPrefs.SetInt(Prefix + "ResWidth", value);
|
||||
get => 320;
|
||||
set { } // no-op, hardcoded
|
||||
}
|
||||
|
||||
public static int ResolutionHeight
|
||||
{
|
||||
get => EditorPrefs.GetInt(Prefix + "ResHeight", 240);
|
||||
set => EditorPrefs.SetInt(Prefix + "ResHeight", value);
|
||||
get => 240;
|
||||
set { } // no-op, hardcoded
|
||||
}
|
||||
|
||||
public static bool DualBuffering
|
||||
{
|
||||
get => EditorPrefs.GetBool(Prefix + "DualBuffering", true);
|
||||
set => EditorPrefs.SetBool(Prefix + "DualBuffering", value);
|
||||
get => true;
|
||||
set { } // no-op, hardcoded
|
||||
}
|
||||
|
||||
public static bool VerticalLayout
|
||||
{
|
||||
get => EditorPrefs.GetBool(Prefix + "VerticalLayout", true);
|
||||
set => EditorPrefs.SetBool(Prefix + "VerticalLayout", value);
|
||||
get => true;
|
||||
set { } // no-op, hardcoded
|
||||
}
|
||||
|
||||
// --- Clean Build ---
|
||||
public static bool CleanBuild
|
||||
{
|
||||
get => EditorPrefs.GetBool(Prefix + "CleanBuild", true);
|
||||
set => EditorPrefs.SetBool(Prefix + "CleanBuild", value);
|
||||
}
|
||||
|
||||
// --- Export settings ---
|
||||
@@ -124,13 +131,6 @@ namespace SplashEdit.EditorCode
|
||||
set => EditorPrefs.SetFloat(Prefix + "GTEScaling", value);
|
||||
}
|
||||
|
||||
// --- Play Mode Intercept ---
|
||||
public static bool InterceptPlayMode
|
||||
{
|
||||
get => EditorPrefs.GetBool(Prefix + "InterceptPlayMode", false);
|
||||
set => EditorPrefs.SetBool(Prefix + "InterceptPlayMode", value);
|
||||
}
|
||||
|
||||
// --- ISO Build ---
|
||||
/// <summary>
|
||||
/// Optional path to a Sony license file (.dat) for the ISO image.
|
||||
@@ -162,7 +162,7 @@ namespace SplashEdit.EditorCode
|
||||
"Target", "Mode", "NativeProjectPath", "MIPSToolchainPath",
|
||||
"PCSXReduxPath", "PCSXReduxPCdrvBase", "SerialPort", "SerialBaudRate",
|
||||
"ResWidth", "ResHeight", "DualBuffering", "VerticalLayout",
|
||||
"GTEScaling", "AutoValidate", "InterceptPlayMode",
|
||||
"GTEScaling", "AutoValidate",
|
||||
"LicenseFilePath", "ISOVolumeLabel"
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user