Fixed some PR derps

This commit is contained in:
2025-04-03 00:48:13 +02:00
parent d1835dfe3a
commit 6c1a0854c7
2 changed files with 6 additions and 6 deletions

View File

@@ -332,7 +332,7 @@ namespace SplashEdit.RuntimeCode
}
public static byte Clamp0255(float v) => (byte)(Mathf.Clamp(v, 0, 255));
public static byte ColorUnityToPSX(float v) => (byte)(Mathf.Clamp(v*255, 0, 255));
}
}