From 0a053ed66a0617a0c4547c8f7cc06c111f7d78ae Mon Sep 17 00:00:00 2001 From: Philipp Wiesemann Date: Sun, 26 Oct 2014 17:44:00 +0100 Subject: [PATCH] Fixed wording in SDL_GameControllerAddMappingsFromRW() error message. --- src/joystick/SDL_gamecontroller.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/joystick/SDL_gamecontroller.c b/src/joystick/SDL_gamecontroller.c index c60f39189..c229dd03f 100644 --- a/src/joystick/SDL_gamecontroller.c +++ b/src/joystick/SDL_gamecontroller.c @@ -606,7 +606,7 @@ SDL_GameControllerAddMappingsFromRW(SDL_RWops * rw, int freerw) if (freerw) { SDL_RWclose(rw); } - return SDL_SetError("Could allocate space to not read DB into memory"); + return SDL_SetError("Could not allocate space to read DB into memory"); } if (SDL_RWread(rw, buf, db_size, 1) != 1) {