diff options
Diffstat (limited to '3rdparty/bgfx/examples/common/entry/entry_noop.cpp')
-rw-r--r-- | 3rdparty/bgfx/examples/common/entry/entry_noop.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/3rdparty/bgfx/examples/common/entry/entry_noop.cpp b/3rdparty/bgfx/examples/common/entry/entry_noop.cpp index a0007bc5c98..a7157d77ef2 100644 --- a/3rdparty/bgfx/examples/common/entry/entry_noop.cpp +++ b/3rdparty/bgfx/examples/common/entry/entry_noop.cpp @@ -1,5 +1,5 @@ /* - * Copyright 2011-2017 Branimir Karadzic. All rights reserved. + * Copyright 2011-2018 Branimir Karadzic. All rights reserved. * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause */ @@ -52,9 +52,9 @@ namespace entry BX_UNUSED(_handle, _title); } - void toggleWindowFrame(WindowHandle _handle) + void setWindowFlags(WindowHandle _handle, uint32_t _flags, bool _enabled) { - BX_UNUSED(_handle); + BX_UNUSED(_handle, _flags, _enabled); } void toggleFullscreen(WindowHandle _handle) @@ -71,7 +71,7 @@ namespace entry int main(int _argc, const char* const* _argv) { - entry::main(_argc, _argv); + return entry::main(_argc, _argv); } #endif // ENTRY_CONFIG_USE_NOOP |