From ddabe6d2f45efad6bd46c408b57b69d44925425e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C5=82awomir=20=C5=9Apiewak?= Date: Mon, 15 Jul 2024 14:14:52 +0200 Subject: [PATCH] Fix broken ASCII pointer. --- GameRes/ArcView.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GameRes/ArcView.cs b/GameRes/ArcView.cs index aa6aaa80..3ec59a73 100644 --- a/GameRes/ArcView.cs +++ b/GameRes/ArcView.cs @@ -34,7 +34,7 @@ namespace GameRes public static class Encodings { public static readonly Encoding cp932 = Encoding.GetEncoding(932); - public static readonly Encoding ASCII = Encoding.GetEncoding(32765); + public static readonly Encoding ASCII = Encoding.ASCII; public static Encoding WithFatalFallback (this Encoding enc) {