diff options
author | Lioncash <mathew1800@gmail.com> | 2019-05-29 02:02:36 -0400 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2019-06-03 15:34:31 -0400 |
commit | 0a650ec99e7141ea0a28b4f196a9b7d3f3bbe24e (patch) | |
tree | 8f931758ed1401bf7187cfd7addda5035f41351c /src/yuzu/bootmanager.h | |
parent | 2575403acf52d1f20dac413a9f434e4a36f3647a (diff) |
yuzu/bootmanager: unsigned -> u32
Same thing (for platforms we support), less reading.
Diffstat (limited to 'src/yuzu/bootmanager.h')
-rw-r--r-- | src/yuzu/bootmanager.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/yuzu/bootmanager.h b/src/yuzu/bootmanager.h index 5a1ebd0fe..85c080000 100644 --- a/src/yuzu/bootmanager.h +++ b/src/yuzu/bootmanager.h @@ -133,13 +133,13 @@ public: QByteArray saveGeometry(); // overridden qreal GetWindowPixelRatio() const; - std::pair<unsigned, unsigned> ScaleTouch(const QPointF pos) const; + std::pair<u32, u32> ScaleTouch(QPointF pos) const; void closeEvent(QCloseEvent* event) override; bool event(QEvent* event) override; void focusOutEvent(QFocusEvent* event) override; - void OnClientAreaResized(unsigned width, unsigned height); + void OnClientAreaResized(u32 width, u32 height); void InitRenderTarget(); @@ -162,7 +162,7 @@ private: void TouchUpdateEvent(const QTouchEvent* event); void TouchEndEvent(); - void OnMinimalClientAreaChangeRequest(std::pair<unsigned, unsigned> minimal_size) override; + void OnMinimalClientAreaChangeRequest(std::pair<u32, u32> minimal_size) override; QWidget* container = nullptr; GGLWidgetInternal* child = nullptr; |