From 4b09ee9ab7f1efd735e6754691c21e3bab12c4e9 Mon Sep 17 00:00:00 2001 From: MrScautHD <65916181+MrScautHD@users.noreply.github.com> Date: Sat, 5 Aug 2023 19:29:00 +0200 Subject: [PATCH] Fix `IsBlittableCache.VALUE` did not fit in the c# name rules --- Raylib-cs.Tests/BlittableHelper.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Raylib-cs.Tests/BlittableHelper.cs b/Raylib-cs.Tests/BlittableHelper.cs index 7df12d0..4b9e497 100644 --- a/Raylib-cs.Tests/BlittableHelper.cs +++ b/Raylib-cs.Tests/BlittableHelper.cs @@ -36,7 +36,7 @@ namespace Raylib_cs.Tests { public static bool IsBlittable() { - return IsBlittableCache.Value; + return IsBlittableCache.VALUE; } public static bool IsBlittable(this Type type) @@ -64,7 +64,7 @@ namespace Raylib_cs.Tests private static class IsBlittableCache { - public static readonly bool Value = IsBlittable(typeof(T)); + public static readonly bool VALUE = IsBlittable(typeof(T)); } } }