mirror of
https://github.com/scratchfoundation/bgfx.git
synced 2024-11-25 00:58:30 -05:00
Merge pull request #585 from selfshadow/patch-1
Fixed image loading error handling in 20-nanovg
This commit is contained in:
commit
a09c3715a1
1 changed files with 1 additions and 1 deletions
|
@ -946,7 +946,7 @@ int loadDemoData(struct NVGcontext* vg, struct DemoData* data)
|
|||
char file[128];
|
||||
bx::snprintf(file, 128, "images/image%d.jpg", ii+1);
|
||||
data->images[ii] = nvgCreateImage(vg, file, 0);
|
||||
if (data->images[ii] == bgfx::invalidHandle)
|
||||
if (data->images[ii] == 0)
|
||||
{
|
||||
printf("Could not load %s.\n", file);
|
||||
return -1;
|
||||
|
|
Loading…
Reference in a new issue