Removed need for varying.def semicolont terminator.

This commit is contained in:
Branimir Karadžić 2014-07-22 21:04:03 -07:00
parent ade8f49b6d
commit 2f292bd348

View file

@ -1929,6 +1929,11 @@ int main(int _argc, const char* _argv[])
{ {
parse = bx::strws(parse); parse = bx::strws(parse);
const char* eol = strchr(parse, ';'); const char* eol = strchr(parse, ';');
if (NULL == eol)
{
eol = bx::streol(parse);
}
if (NULL != eol) if (NULL != eol)
{ {
const char* precision = NULL; const char* precision = NULL;