Skip to content

Commit

Permalink
Fixed comments in joystick implementation files claiming to be headers.
Browse files Browse the repository at this point in the history
It seems comments were originally copied from SDL_sysjoystick.h.
  • Loading branch information
philippwiesemann committed Jan 28, 2014
1 parent 4f1b8a4 commit 62b17e7
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/joystick/dummy/SDL_sysjoystick.c
Expand Up @@ -22,7 +22,7 @@

#if defined(SDL_JOYSTICK_DUMMY) || defined(SDL_JOYSTICK_DISABLED)

/* This is the system specific header for the SDL joystick API */
/* This is the dummy implementation of the SDL joystick API */

#include "SDL_joystick.h"
#include "../SDL_sysjoystick.h"
Expand Down
2 changes: 1 addition & 1 deletion src/joystick/haiku/SDL_haikujoystick.cc
Expand Up @@ -22,7 +22,7 @@

#ifdef SDL_JOYSTICK_HAIKU

/* This is the system specific header for the SDL joystick API */
/* This is the Haiku implementation of the SDL joystick API */

#include <os/support/String.h>
#include <os/device/Joystick.h>
Expand Down
2 changes: 1 addition & 1 deletion src/joystick/iphoneos/SDL_sysjoystick.m
Expand Up @@ -20,7 +20,7 @@
*/
#include "../../SDL_internal.h"

/* This is the system specific header for the SDL joystick API */
/* This is the iOS implementation of the SDL joystick API */

#include "SDL_joystick.h"
#include "../SDL_sysjoystick.h"
Expand Down
2 changes: 1 addition & 1 deletion src/joystick/linux/SDL_sysjoystick.c
Expand Up @@ -26,7 +26,7 @@
#error SDL now requires a Linux 2.4+ kernel with /dev/input/event support.
#endif

/* This is the system specific header for the SDL joystick API */
/* This is the Linux implementation of the SDL joystick API */

#include <sys/stat.h>
#include <unistd.h>
Expand Down
2 changes: 1 addition & 1 deletion src/joystick/psp/SDL_sysjoystick.c
Expand Up @@ -19,7 +19,7 @@
3. This notice may not be removed or altered from any source distribution.
*/

/* This is the system specific header for the SDL joystick API */
/* This is the PSP implementation of the SDL joystick API */
#include <pspctrl.h>
#include <pspkernel.h>

Expand Down

0 comments on commit 62b17e7

Please sign in to comment.