mirror of
https://github.com/bkaradzic/bgfx.git
synced 2026-02-17 20:52:36 +01:00
Replaced BX_OVERRIDE with override.
This commit is contained in:
@@ -145,7 +145,7 @@ public:
|
||||
{
|
||||
}
|
||||
|
||||
void init(int32_t _argc, const char* const* _argv, uint32_t _width, uint32_t _height) BX_OVERRIDE
|
||||
void init(int32_t _argc, const char* const* _argv, uint32_t _width, uint32_t _height) override
|
||||
{
|
||||
Args args(_argc, _argv);
|
||||
|
||||
@@ -231,7 +231,7 @@ public:
|
||||
m_time = 0.0f;
|
||||
}
|
||||
|
||||
virtual int shutdown() BX_OVERRIDE
|
||||
virtual int shutdown() override
|
||||
{
|
||||
// Cleanup.
|
||||
imguiDestroy();
|
||||
@@ -273,7 +273,7 @@ public:
|
||||
return 0;
|
||||
}
|
||||
|
||||
bool update() BX_OVERRIDE
|
||||
bool update() override
|
||||
{
|
||||
if (!entry::processEvents(m_width, m_height, m_debug, m_reset, &m_mouseState) )
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user