fixing warnings in kvf

This commit is contained in:
Kbz-8
2024-09-15 10:11:08 +02:00
parent 527a88ebaa
commit 83432cb356
9 changed files with 45 additions and 2 deletions

View File

@@ -173,6 +173,11 @@ namespace mlx
*y = DM.h;
}
void SDLManager::SetWindowPosition(Handle window, int x, int y) const noexcept
{
SDL_SetWindowPosition(static_cast<SDL_Window*>(window), x, y);
}
std::int32_t SDLManager::GetX() const noexcept
{
int dummy;