diff options
Diffstat (limited to '3rdparty/bgfx/examples/25-c99/helloworld.c')
-rw-r--r-- | 3rdparty/bgfx/examples/25-c99/helloworld.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/3rdparty/bgfx/examples/25-c99/helloworld.c b/3rdparty/bgfx/examples/25-c99/helloworld.c index e217e10e8c6..a362736b435 100644 --- a/3rdparty/bgfx/examples/25-c99/helloworld.c +++ b/3rdparty/bgfx/examples/25-c99/helloworld.c @@ -3,7 +3,7 @@ * License: http://www.opensource.org/licenses/BSD-2-Clause */ -#include <bgfx.c99.h> +#include <bgfx/c99/bgfx.h> #include "../00-helloworld/logo.h" extern bool entry_process_events(uint32_t* _width, uint32_t* _height, uint32_t* _debug, uint32_t* _reset); @@ -47,7 +47,7 @@ int _main_(int _argc, char** _argv) // This dummy draw call is here to make sure that view 0 is cleared // if no other draw calls are submitted to view 0. - bgfx_submit(0, 0); + bgfx_touch(0); // Use debug font to print information about this example. bgfx_dbg_text_clear(0, false); |