From c12149b96ea1d519302af1f3e7a178e97b0ff9d6 Mon Sep 17 00:00:00 2001 From: Clownacy Date: Sun, 13 Sep 2020 19:35:31 +0100 Subject: [PATCH] Fix a weird old typo --- src/Backends/Platform/GLFW3.cpp | 2 +- src/Backends/Platform/Null.cpp | 2 +- src/Backends/Platform/SDL2.cpp | 2 +- src/Backends/Platform/WiiU.cpp | 2 +- src/Main.cpp | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/Backends/Platform/GLFW3.cpp b/src/Backends/Platform/GLFW3.cpp index 0583e4ef..717b7838 100644 --- a/src/Backends/Platform/GLFW3.cpp +++ b/src/Backends/Platform/GLFW3.cpp @@ -270,7 +270,7 @@ void Backend_SetCursor(const unsigned char *rgb_pixels, size_t width, size_t hei } } -void PlaybackBackend_EnableDragAndDrop(void) +void Backend_EnableDragAndDrop(void) { glfwSetDropCallback(window, DragAndDropCallback); } diff --git a/src/Backends/Platform/Null.cpp b/src/Backends/Platform/Null.cpp index 73995fa3..e8757a0d 100644 --- a/src/Backends/Platform/Null.cpp +++ b/src/Backends/Platform/Null.cpp @@ -48,7 +48,7 @@ void Backend_SetCursor(const unsigned char *rgb_pixels, size_t width, size_t hei (void)height; } -void PlaybackBackend_EnableDragAndDrop(void) +void Backend_EnableDragAndDrop(void) { } diff --git a/src/Backends/Platform/SDL2.cpp b/src/Backends/Platform/SDL2.cpp index c9a2a67f..05099962 100644 --- a/src/Backends/Platform/SDL2.cpp +++ b/src/Backends/Platform/SDL2.cpp @@ -161,7 +161,7 @@ void Backend_SetCursor(const unsigned char *rgb_pixels, size_t width, size_t hei } } -void PlaybackBackend_EnableDragAndDrop(void) +void Backend_EnableDragAndDrop(void) { SDL_EventState(SDL_DROPFILE, SDL_ENABLE); } diff --git a/src/Backends/Platform/WiiU.cpp b/src/Backends/Platform/WiiU.cpp index 86b43c2c..c358ed4f 100644 --- a/src/Backends/Platform/WiiU.cpp +++ b/src/Backends/Platform/WiiU.cpp @@ -90,7 +90,7 @@ void Backend_SetCursor(const unsigned char *rgb_pixels, size_t width, size_t hei (void)height; } -void PlaybackBackend_EnableDragAndDrop(void) +void Backend_EnableDragAndDrop(void) { } diff --git a/src/Main.cpp b/src/Main.cpp index eaac4333..a395c446 100644 --- a/src/Main.cpp +++ b/src/Main.cpp @@ -284,7 +284,7 @@ int main(int argc, char *argv[]) } #ifdef DEBUG_SAVE - PlaybackBackend_EnableDragAndDrop(); + Backend_EnableDragAndDrop(); #endif // Set up window icon