Use fgWarning for android joystick stubs

git-svn-id: https://svn.code.sf.net/p/freeglut/code/trunk@1283 7f0cb862-5218-0410-a997-914c9d46530a
This commit is contained in:
beuc 2012-05-02 16:47:45 +00:00
parent df8fe9c476
commit ff0a894fdc

View File

@ -31,20 +31,20 @@
void fgPlatformJoystickRawRead( SFG_Joystick* joy, int* buttons, float* axes ) void fgPlatformJoystickRawRead( SFG_Joystick* joy, int* buttons, float* axes )
{ {
fprintf(stderr, "fgPlatformJoystickRawRead: STUB\n"); fgWarning("fgPlatformJoystickRawRead: STUB\n");
} }
void fgPlatformJoystickOpen( SFG_Joystick* joy ) void fgPlatformJoystickOpen( SFG_Joystick* joy )
{ {
fprintf(stderr, "fgPlatformJoystickOpen: STUB\n"); fgWarning("fgPlatformJoystickOpen: STUB\n");
} }
void fgPlatformJoystickInit( SFG_Joystick *fgJoystick[], int ident ) void fgPlatformJoystickInit( SFG_Joystick *fgJoystick[], int ident )
{ {
fprintf(stderr, "fgJoystick: STUB\n"); fgWarning("fgJoystick: STUB\n");
} }
void fgPlatformJoystickClose ( int ident ) void fgPlatformJoystickClose ( int ident )
{ {
fprintf(stderr, "fgPlatformJoystickClose: STUB\n"); fgWarning("fgPlatformJoystickClose: STUB\n");
} }