Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fixed wording in SDL_GameControllerAddMappingsFromRW() error message.
  • Loading branch information
philippwiesemann committed Oct 26, 2014
1 parent 01f3498 commit 0a053ed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/joystick/SDL_gamecontroller.c
Expand Up @@ -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) {
Expand Down

0 comments on commit 0a053ed

Please sign in to comment.