source: abuse/trunk/src/sdlport/joystick.cpp @ 124

Last change on this file since 124 was 124, checked in by Sam Hocevar, 15 years ago
  • Get rid of ugly tabs and trailing spaces everywhere.
File size: 1.1 KB
Line 
1/*
2 *  Abuse - dark 2D side-scrolling platform game
3 *  Copyright (c) 2001 Anthony Kruize <trandor@labyrinth.net.au>
4 *
5 *  This program is free software; you can redistribute it and/or modify
6 *  it under the terms of the GNU General Public License as published by
7 *  the Free Software Foundation; either version 2 of the License, or
8 *  (at your option) any later version.
9 *
10 *  This program is distributed in the hope that it will be useful,
11 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
12 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 *  GNU General Public License for more details.
14 *
15 *  You should have received a copy of the GNU General Public License
16 *  along with this program; if not, write to the Free Software Foundation,
17 *  Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
18 */
19
20#include "config.h"
21
22#include "joy.hpp"
23
24/* NOTE: No joystick support yet.
25 */
26
27int joy_init( int argc, char **argv )
28{
29    /* Do Nothing */
30    return 0;
31}
32
33void joy_status( int &b1, int &b2, int &b3, int &xv, int &yv )
34{
35    /* Do Nothing */
36}
37
38void joy_calibrate()
39{
40    /* Do Nothing */
41}
Note: See TracBrowser for help on using the repository browser.