emu_window: unsigned -> u32
This is more concise and consistent with the rest of the codebase.
This commit is contained in:
parent
607ff3489c
commit
8805233f5e
4 changed files with 23 additions and 23 deletions
|
@ -238,6 +238,6 @@ void EmuWindow_SDL2::SetWindowIcon() {
|
|||
SDL_FreeSurface(window_icon);
|
||||
}
|
||||
|
||||
void EmuWindow_SDL2::OnMinimalClientAreaChangeRequest(std::pair<unsigned, unsigned> minimal_size) {
|
||||
void EmuWindow_SDL2::OnMinimalClientAreaChangeRequest(std::pair<u32, u32> minimal_size) {
|
||||
SDL_SetWindowMinimumSize(render_window, minimal_size.first, minimal_size.second);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue