From 7e7a84ab7dc93979510b1d716ab579559fa5db7d Mon Sep 17 00:00:00 2001 From: Dennis Meinen Date: Mon, 29 Jul 2024 11:20:08 +0200 Subject: [PATCH] Accidentally swapped 2 docblocks around. --- window/windowhandler.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/window/windowhandler.h b/window/windowhandler.h index de56bb0..8607a5a 100644 --- a/window/windowhandler.h +++ b/window/windowhandler.h @@ -82,8 +82,7 @@ class Window { /** * @brief Sets the size of the window. * - * @param width The width of the window. - * @param height The height of the window. + * @return The currently used scaling factor. */ static float GetScale() { return get()._getScale(); } @@ -91,7 +90,8 @@ class Window { /** * @brief Gets the size of the window. * - * @return The currently used scaling factor. + * @param width The width of the window. + * @param height The height of the window. */ static void SetSize(int width, int height) { get()._setSize(width, height); }