blob: deda16f07d1da94d6c8618ae5f4746dca1cc0d15 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
/*
* gamepad.c: A plugin for the Video Disk Recorder
*
* See the README file for copyright information and how to reach the author.
*
* $Id$
*/
#include "gamepad_config.h"
#include <string.h>
cGamepadConfig::cGamepadConfig()
{
strncpy(device, "/dev/input/js0", sizeof(device));
testMode = 0;
}
cGamepadConfig gamepadConfig;
|