mirror of
https://github.com/scratchfoundation/bgfx.git
synced 2024-11-25 00:58:30 -05:00
Removed need for varying.def semicolont terminator.
This commit is contained in:
parent
ade8f49b6d
commit
2f292bd348
1 changed files with 5 additions and 0 deletions
|
@ -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;
|
||||||
|
|
Loading…
Reference in a new issue