| 165 | } |
| 166 | |
| 167 | void Window::EnableKeyRepeat(bool enable) |
| 168 | { |
| 169 | #if NAZARA_PLATFORM_SAFE |
| 170 | if (!m_impl) |
| 171 | { |
| 172 | NazaraError("Window not created"); |
| 173 | return; |
| 174 | } |
| 175 | #endif |
| 176 | |
| 177 | m_impl->EnableKeyRepeat(enable); |
| 178 | } |
| 179 | |
| 180 | void Window::EnableSmoothScrolling(bool enable) |
| 181 | { |