emu_window: unsigned -> u32

This is more concise and consistent with the rest of the codebase.
This commit is contained in:
Lioncash 2021-04-23 11:17:33 -04:00
parent 607ff3489c
commit 8805233f5e
4 changed files with 23 additions and 23 deletions

View file

@ -71,7 +71,7 @@ protected:
void Fullscreen();
/// Called when a configuration change affects the minimal size of the window
void OnMinimalClientAreaChangeRequest(std::pair<unsigned, unsigned> minimal_size) override;
void OnMinimalClientAreaChangeRequest(std::pair<u32, u32> minimal_size) override;
/// Is the window still open?
bool is_open = true;