| 268 | } |
| 269 | |
| 270 | void SdlBaseManager::setWindowCaption(const std::wstring& _text) |
| 271 | { |
| 272 | MyGUI::UString title(_text); |
| 273 | SDL_SetWindowTitle(mSdlWindow, title.asUTF8_c_str()); |
| 274 | } |
| 275 | |
| 276 | void SdlBaseManager::injectMouseMove(int _absx, int _absy, int _absz) |
| 277 | { |
nothing calls this directly
no test coverage detected