mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-24 23:11:14 +01:00
71506bc0f7
1. Added LiveUpdates, while the configuration window is open nJoy and Wiimote will check for connected/disconnected pads 2. Removed the 'Nintendo RVL-CNT-01' device from the device list, and other SDL devices with no axes/buttons 3. Added SDL (from the current SVN) to get debugging information for SDL.dll 4. Added 'Upright Wiimote' option to emulated Wiimote options git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@4534 8ced0084-cf51-0410-be5f-012b33b47a6e
12 lines
194 B
C
12 lines
194 B
C
|
|
#ifndef _SDLname_h_
|
|
#define _SDLname_h_
|
|
|
|
#if defined(__STDC__) || defined(__cplusplus)
|
|
#define NeedFunctionPrototypes 1
|
|
#endif
|
|
|
|
#define SDL_NAME(X) SDL_##X
|
|
|
|
#endif /* _SDLname_h_ */
|