mirror of
https://github.com/scratchfoundation/bgfx.git
synced 2024-11-28 18:45:54 -05:00
Merge pull request #678 from steinarvk/master
Fixed backwards error check in geometryc.
This commit is contained in:
commit
377e77f6b5
1 changed files with 1 additions and 1 deletions
|
@ -811,7 +811,7 @@ int main(int _argc, const char* _argv[])
|
|||
PrimitiveArray primitives;
|
||||
|
||||
bx::CrtFileWriter writer;
|
||||
if (bx::open(&writer, outFilePath) )
|
||||
if (!bx::open(&writer, outFilePath) )
|
||||
{
|
||||
printf("Unable to open output file '%s'.", outFilePath);
|
||||
exit(EXIT_FAILURE);
|
||||
|
|
Loading…
Reference in a new issue