mirror of
https://github.com/bkaradzic/bgfx.git
synced 2026-02-17 20:52:36 +01:00
shaderc: Fixed return value on error.
This commit is contained in:
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)
|
||||
|
||||
Reference in New Issue
Block a user