Skip to content

Commit

Permalink
Fixing bug with ASM parsing.
Browse files Browse the repository at this point in the history
  • Loading branch information
MainMemory committed Mar 21, 2015
1 parent 8901967 commit b6eaf6b
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions SonLVLAPI/LevelData.cs
Expand Up @@ -2405,6 +2405,7 @@ public static byte[] ASMToBin(string file, int sti, EngineVersion version, out D

public static long ParseASMNum(string data, Dictionary<string, int> labels)
{
data = data.Trim();
bool neg = false;
if (data.StartsWith("-"))
{
Expand Down

0 comments on commit b6eaf6b

Please sign in to comment.