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.