mirror of
https://github.com/bkaradzic/bgfx.git
synced 2026-02-20 05:43:12 +01:00
Function setWindowTitle() now returns void.
This commit is contained in:
@@ -304,7 +304,7 @@ namespace entry
|
||||
}
|
||||
}
|
||||
|
||||
bool setWindowTitle(const char* _title)
|
||||
void setWindowTitle(const char* _title)
|
||||
{
|
||||
SDL_WM_SetCaption(_title, NULL);
|
||||
}
|
||||
@@ -347,7 +347,7 @@ namespace entry
|
||||
SDL_PushEvent(&event);
|
||||
}
|
||||
|
||||
bool setWindowTitle(const char* _title)
|
||||
void setWindowTitle(const char* _title)
|
||||
{
|
||||
s_ctx.setWindowTitle(_title);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user