mirror of
https://github.com/moonlight-stream/moonlight-qt
synced 2025-01-24 08:35:01 +00:00
parent
202ef41894
commit
bfcd373eec
1 changed files with 3 additions and 2 deletions
|
@ -1585,7 +1585,8 @@ void Session::execInternal()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
m_Window = SDL_CreateWindow("Moonlight",
|
std::string windowName = QString(m_Computer->name + " - Moonlight").toStdString();
|
||||||
|
m_Window = SDL_CreateWindow(windowName.c_str(),
|
||||||
x,
|
x,
|
||||||
y,
|
y,
|
||||||
width,
|
width,
|
||||||
|
@ -1596,7 +1597,7 @@ void Session::execInternal()
|
||||||
"SDL_CreateWindow() failed with platform flags: %s",
|
"SDL_CreateWindow() failed with platform flags: %s",
|
||||||
SDL_GetError());
|
SDL_GetError());
|
||||||
|
|
||||||
m_Window = SDL_CreateWindow("Moonlight",
|
m_Window = SDL_CreateWindow(windowName.c_str(),
|
||||||
x,
|
x,
|
||||||
y,
|
y,
|
||||||
width,
|
width,
|
||||||
|
|
Loading…
Reference in a new issue