Add missing spaces in text output.
This commit is contained in:
parent
f909a93107
commit
5d0c8e581f
1 changed files with 2 additions and 2 deletions
|
@ -37,14 +37,14 @@ twindow::twindow(const std::string& title,
|
|||
: window_(SDL_CreateWindow(title.c_str(), x, y, w, h, window_flags))
|
||||
{
|
||||
if(!window_) {
|
||||
ERR_DP << "Failed to create a SDL_Window object with error»"
|
||||
ERR_DP << "Failed to create a SDL_Window object with error »"
|
||||
<< SDL_GetError() << "«.\n";
|
||||
|
||||
throw game::error("");
|
||||
}
|
||||
|
||||
if(!SDL_CreateRenderer(window_, -1, render_flags)) {
|
||||
ERR_DP << "Failed to create a SDL_Window object with error»"
|
||||
ERR_DP << "Failed to create a SDL_Window object with error »"
|
||||
<< SDL_GetError() << "«.\n";
|
||||
|
||||
throw game::error("");
|
||||
|
|
Loading…
Add table
Reference in a new issue