From 12f8ba2fc6a6f91bad53d479c5a7986f6877d472 Mon Sep 17 00:00:00 2001 From: arookas Date: Mon, 1 Feb 2016 20:41:55 -0500 Subject: [PATCH] Added overload to variable-symbol constructor --- ssc/symbol.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ssc/symbol.cs b/ssc/symbol.cs index b0a7d6e..da755f7 100644 --- a/ssc/symbol.cs +++ b/ssc/symbol.cs @@ -283,6 +283,8 @@ namespace arookas { get { return (uint)Index; } } + public sunVariableSymbol(string name) + : this(name, 0, 0) { } public sunVariableSymbol(string name, int display, int index) : base(name) { mDisplay = display;