Fix a weird old typo
This commit is contained in:
parent
7bc028f5d8
commit
c12149b96e
5 changed files with 5 additions and 5 deletions
|
@ -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);
|
glfwSetDropCallback(window, DragAndDropCallback);
|
||||||
}
|
}
|
||||||
|
|
|
@ -48,7 +48,7 @@ void Backend_SetCursor(const unsigned char *rgb_pixels, size_t width, size_t hei
|
||||||
(void)height;
|
(void)height;
|
||||||
}
|
}
|
||||||
|
|
||||||
void PlaybackBackend_EnableDragAndDrop(void)
|
void Backend_EnableDragAndDrop(void)
|
||||||
{
|
{
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -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);
|
SDL_EventState(SDL_DROPFILE, SDL_ENABLE);
|
||||||
}
|
}
|
||||||
|
|
|
@ -90,7 +90,7 @@ void Backend_SetCursor(const unsigned char *rgb_pixels, size_t width, size_t hei
|
||||||
(void)height;
|
(void)height;
|
||||||
}
|
}
|
||||||
|
|
||||||
void PlaybackBackend_EnableDragAndDrop(void)
|
void Backend_EnableDragAndDrop(void)
|
||||||
{
|
{
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -284,7 +284,7 @@ int main(int argc, char *argv[])
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifdef DEBUG_SAVE
|
#ifdef DEBUG_SAVE
|
||||||
PlaybackBackend_EnableDragAndDrop();
|
Backend_EnableDragAndDrop();
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Set up window icon
|
// Set up window icon
|
||||||
|
|
Loading…
Add table
Reference in a new issue