Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Initializing recap screen and NPC text as empty strings.
  • Loading branch information
MainMemory committed Jan 10, 2016
1 parent 923634f commit 412814e
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions SA Tools/IniData.cs
Expand Up @@ -1334,7 +1334,10 @@ public static void Save(this RecapScreen[][] list, string directory, out string[

public class RecapScreen
{
public RecapScreen() { }
public RecapScreen()
{
Text = string.Empty;
}

public RecapScreen(byte[] file, int address, uint imageBase, Languages language)
{
Expand Down Expand Up @@ -1566,7 +1569,10 @@ public bool HasControl

public class NPCTextLine
{
public NPCTextLine() { }
public NPCTextLine()
{
Line = string.Empty;
}

public NPCTextLine(byte[] file, int address, uint imageBase, Languages language, bool includeTime)
{
Expand Down

0 comments on commit 412814e

Please sign in to comment.