mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-12-15 15:11:32 +00:00
Add missing closing " for string constants in AST dumps
This commit is contained in:
parent
52d5e74e7e
commit
b6e525d935
1 changed files with 1 additions and 0 deletions
|
@ -267,6 +267,7 @@ static void PrintStringConst(FLispString &out, FString str)
|
||||||
outstr.AppendFormat("\\x%02X", str[i]);
|
outstr.AppendFormat("\\x%02X", str[i]);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
outstr << '"';
|
||||||
out.Add(outstr);
|
out.Add(outstr);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue