Skip to content

Commit

Permalink
Unescape Bug Fix in old games
Browse files Browse the repository at this point in the history
  • Loading branch information
marcussacana committed Sep 2, 2023
1 parent df8b7e9 commit 6be7f0b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CatSceneEditor/CSTHelper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ private void FakeDecode(ref string Line, bool Decode) {
}
}

List<string> Prefixs = new List<string>(new string[] { "\\n", "\\@", "\\r", "\\pc", "\\pl", "\\pr", "\\wf", "\\w", "\\fr", "\\fnl","\\fss", "\\fnn", "\\fll", "\\fn", "\\ti", "\\f", " ", "-" });
List<string> Prefixs = new List<string>(new string[] { "\\n", "\\@", "\\r", "\\pc", "\\pl", "\\pr", "\\wf", "\\w", "\\fr", "\\fnl","\\fss", "\\fnn", "\\fll", "\\fn", "\\ti", "\\f", " ", "-", " " });
private void CutString(ref string String, uint ID, bool Cutted) {
string Prefix = string.Empty;
while (GetPrefix(String) != null) {
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<a href='https://ko-fi.com/Z8Z231I4Z' target='_blank'><img height='40' style='border:0px;height:40px;' src='https://cdn.ko-fi.com/cdn/kofi1.png?v=2' border='0' alt='Buy Me a Coffee at ko-fi.com' /></a>

## CatSceneEditor (CSE) - v1.4
[![Build Status](https://travis-ci.org/ForumHulp/pageaddon.svg?branch=master)](http://vnx.uvnworks.com)
## CatSceneEditor (CSE) - v1.5
[![Build Status](https://ci.appveyor.com/api/projects/status/github/marcussacana/catsceneeditor?branch=master&retina=true)](https://ci.appveyor.com/project/marcussacana/catsceneeditor)


A C# version of CatSystem2 Translation Tools
Expand Down

0 comments on commit 6be7f0b

Please sign in to comment.