2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-12-09 12:27:43 +00:00

Conform HLSL shaders

This commit is contained in:
Jack Andersen
2017-01-28 21:27:48 -10:00
parent 7586142991
commit 1fbd08b7c6
19 changed files with 337 additions and 138 deletions

View File

@@ -34,7 +34,7 @@ static uint32_t ParseTag(const char16_t* str)
for (i=0 ; i<8 && str[i] ; ++i)
parseStr[i] = str[i];
parseStr[i] = '\0';
return strtol(parseStr, nullptr, 16);
return strtoul(parseStr, nullptr, 16);
}
static std::u16string::const_iterator SkipCommas(std::u16string& ret,