From 12d126701d4e8f7a655b6ac87555ccee1577ff9a Mon Sep 17 00:00:00 2001 From: Reece Mackie <20544390+Rover656@users.noreply.github.com> Date: Thu, 30 Apr 2020 16:31:43 +0100 Subject: [PATCH] Review. --- src/core.c | 4 ++-- src/uwp_events.h | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/core.c b/src/core.c index 7fa2856cc..dc585bda1 100644 --- a/src/core.c +++ b/src/core.c @@ -2689,7 +2689,7 @@ int GetTouchX(void) { #if defined(PLATFORM_ANDROID) || defined(PLATFORM_WEB) || defined(PLATFORM_UWP) return (int)CORE.Input.Touch.position[0].x; -#else // PLATFORM_DESKTOP, PLATFORM_RPI, PLATFORM_UWP +#else // PLATFORM_DESKTOP, PLATFORM_RPI return GetMouseX(); #endif } @@ -2699,7 +2699,7 @@ int GetTouchY(void) { #if defined(PLATFORM_ANDROID) || defined(PLATFORM_WEB) || defined(PLATFORM_UWP) return (int)CORE.Input.Touch.position[0].y; -#else // PLATFORM_DESKTOP, PLATFORM_RPI, PLATFORM_UWP +#else // PLATFORM_DESKTOP, PLATFORM_RPI return GetMouseY(); #endif } diff --git a/src/uwp_events.h b/src/uwp_events.h index af28da510..2c403fd36 100644 --- a/src/uwp_events.h +++ b/src/uwp_events.h @@ -5,7 +5,7 @@ * * LICENSE: zlib/libpng * -* Copyright (c) 2014-2020 Ramon Santamaria (@raysan5) +* Copyright (c) 2020-2020 Reece Mackie (@Rover656) * * This software is provided "as-is", without any express or implied warranty. In no event * will the authors be held liable for any damages arising from the use of this software.