Function setWindowTitle() now returns void.

This commit is contained in:
Dario Manesku
2014-08-10 15:59:22 +01:00
parent 1c16d97c27
commit 2b01f8a874
10 changed files with 14 additions and 14 deletions

View File

@@ -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);
}