~ubuntu-branches/debian/experimental/mednafen/experimental

« back to all changes in this revision

Viewing changes to src/sms/system.cpp

  • Committer: Package Import Robot
  • Author(s): Stephen Kitt
  • Date: 2012-11-19 07:00:37 UTC
  • mfrom: (1.2.12)
  • Revision ID: package-import@ubuntu.com-20121119070037-jvknrm13zvim88oc
Tags: 0.9.26-1
* New upstream WIP version.
* Change priority to "extra" to match libvorbisidec1's.
* Drop "DM-Upload-Allowed" since it is no longer appropriate.
* Refresh patches, replacing MPC_STATUS_FAIL constant from older mpcdec
  versions.

Show diffs side-by-side

added added

removed removed

Lines of Context:
318
318
  "gamepad",
319
319
  "Gamepad",
320
320
  NULL,
 
321
  NULL,
321
322
  sizeof(GGGamepadIDII) / sizeof(InputDeviceInputInfoStruct),
322
323
  GGGamepadIDII,
323
324
 }
329
330
  "gamepad",
330
331
  "Gamepad",
331
332
  NULL,
 
333
  NULL,
332
334
  sizeof(SMSGamepadIDII) / sizeof(InputDeviceInputInfoStruct),
333
335
  SMSGamepadIDII,
334
336
 }
336
338
 
337
339
static const InputPortInfoStruct GGPortInfo[] =
338
340
{
339
 
 { 0, "builtin", "Built-In", sizeof(GGInputDeviceInfo) / sizeof(InputDeviceInfoStruct), GGInputDeviceInfo, "gamepad" },
 
341
 { "builtin", "Built-In", sizeof(GGInputDeviceInfo) / sizeof(InputDeviceInfoStruct), GGInputDeviceInfo, "gamepad" },
340
342
};
341
343
 
342
344
static const InputPortInfoStruct SMSPortInfo[] =
343
345
{
344
 
 { 0, "port1", "Port 1", sizeof(SMSInputDeviceInfo) / sizeof(InputDeviceInfoStruct), SMSInputDeviceInfo, "gamepad" },
345
 
 { 0, "port2", "Port 2", sizeof(SMSInputDeviceInfo) / sizeof(InputDeviceInfoStruct), SMSInputDeviceInfo, "gamepad" }
 
346
 { "port1", "Port 1", sizeof(SMSInputDeviceInfo) / sizeof(InputDeviceInfoStruct), SMSInputDeviceInfo, "gamepad" },
 
347
 { "port2", "Port 2", sizeof(SMSInputDeviceInfo) / sizeof(InputDeviceInfoStruct), SMSInputDeviceInfo, "gamepad" }
346
348
};
347
349
 
348
350
static InputInfoStruct GGInputInfo =