Renamed SDL_ASYNCIO_CANCELLED to SDL_ASYNCIO_CANCELED

This commit is contained in:
Sam Lantinga
2024-12-30 18:45:32 -08:00
parent d4d5faedab
commit 1c04ebe423
5 changed files with 9 additions and 9 deletions

View File

@@ -144,7 +144,7 @@ typedef enum SDL_AsyncIOResult
{
SDL_ASYNCIO_COMPLETE, /**< request was completed without error */
SDL_ASYNCIO_FAILURE, /**< request failed for some reason; check SDL_GetError()! */
SDL_ASYNCIO_CANCELLED /**< request was cancelled before completing. */
SDL_ASYNCIO_CANCELED /**< request was canceled before completing. */
} SDL_AsyncIOResult;
/**