mirror of
https://github.com/scratchfoundation/bgfx.git
synced 2025-03-29 08:19:52 -04:00
shaderc: Fixed return value on error.
This commit is contained in:
parent
2639c5f61d
commit
e93449571d
2 changed files with 2 additions and 2 deletions
tools
Binary file not shown.
|
@ -1809,7 +1809,7 @@ int main(int _argc, const char* _argv[])
|
|||
if (0 != writer.open(outFilePath) )
|
||||
{
|
||||
fprintf(stderr, "Unable to open output file '%s'.", outFilePath);
|
||||
return false;
|
||||
return EXIT_FAILURE;
|
||||
}
|
||||
|
||||
if (glsl)
|
||||
|
@ -1849,7 +1849,7 @@ int main(int _argc, const char* _argv[])
|
|||
if (0 != writer->open(outFilePath) )
|
||||
{
|
||||
fprintf(stderr, "Unable to open output file '%s'.", outFilePath);
|
||||
return false;
|
||||
return EXIT_FAILURE;
|
||||
}
|
||||
|
||||
if (fragment)
|
||||
|
|
Loading…
Add table
Reference in a new issue