From e57c1c876f172394445a7fdbbf6dc4090806d760 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Simon=20L=C3=BCbe=C3=9F?= Date: Fri, 8 Aug 2025 19:10:40 +0200 Subject: [PATCH] Removed unnecessary null terminator --- GlitchyEngine/src/Content/Asset.bf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GlitchyEngine/src/Content/Asset.bf b/GlitchyEngine/src/Content/Asset.bf index d025d5e..8ac6bf2 100644 --- a/GlitchyEngine/src/Content/Asset.bf +++ b/GlitchyEngine/src/Content/Asset.bf @@ -21,7 +21,7 @@ abstract class Asset : RefCounter /// This identifier can be used to request the Asset from the content manager. public StringView Identifier { - get => _identifier..EnsureNullTerminator(); + get => _identifier; set => _identifier.Set(value); }