Fixed typo in type name in var viewer

This commit is contained in:
Mark Long 2016-10-12 18:10:00 -05:00
parent 8f8fbba6fd
commit dede70bfb9
1 changed files with 1 additions and 1 deletions

View File

@ -62,7 +62,7 @@ void ApplesoftFileDetailViewer::process()
case ApplesoftToken::StringVarTokenVal: vtname = "String"; break;
case ApplesoftToken::IntAryVarTokenVal: vtname = "Int Array"; break;
case ApplesoftToken::FloatAryVarTokenVal: vtname = "Float Array"; break;
case ApplesoftToken::StringAryVarTokenVal: vtname = "Float String"; break;
case ApplesoftToken::StringAryVarTokenVal: vtname = "String Array"; break;
default: vtname = "Unknown";
}