Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
SDL_ataridevmouse.c (SDL_AtariDevMouse_Open): fix which seems like a …
…typo

... although it's disabled code.
  • Loading branch information
sezero committed Sep 6, 2019
1 parent 75e7f14 commit 920620e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/video/ataricommon/SDL_ataridevmouse.c
Expand Up @@ -57,7 +57,7 @@ int SDL_AtariDevMouse_Open(void)

/* First, try SDL_MOUSEDEV device */
mousedev = SDL_getenv("SDL_MOUSEDEV");
if (!mousedev) {
if (mousedev) {
handle = open(mousedev, 0);
}

Expand Down

0 comments on commit 920620e

Please sign in to comment.