source:
code/branches/mac_osx/src/external/ois/changes_orxonox.diff
@
8065
Last change on this file since 8065 was 7516, checked in by rgrieder, 14 years ago | |
---|---|
|
|
File size: 1.6 KB |
-
OISPrereqs.h
60 60 # define OIS_XBOX_PLATFORM 61 61 # else 62 62 # define OIS_WIN32_PLATFORM 63 # if defined( OIS_DYNAMIC_LIB )63 # if !defined( OIS_STATIC_LIB ) 64 64 # undef _OISExport 65 65 //Ignorable Dll interface warning... 66 66 # if !defined(OIS_MINGW_COMPILER) -
linux/EventHelpers.cpp
35 35 # include <iostream> 36 36 #endif 37 37 38 // Fixes for missing macros in input.h 39 #ifndef FF_EFFECT_MIN 40 #define FF_EFFECT_MIN FF_RUMBLE 41 #endif 42 #ifndef FF_EFFECT_MAX 43 #define FF_EFFECT_MAX FF_RAMP 44 #endif 45 #ifndef FF_WAVEFORM_MIN 46 #define FF_WAVEFORM_MIN FF_SQUARE 47 #endif 48 #ifndef FF_WAVEFORM_MAX 49 #define FF_WAVEFORM_MAX FF_CUSTOM 50 #endif 51 38 52 using namespace std; 39 53 using namespace OIS; 40 54 -
win32/Win32ForceFeedback.cpp
25 25 #include <math.h> 26 26 27 27 // 0 = No trace; 1 = Important traces; 2 = Debug traces 28 #define OIS_WIN32_JOYFF_DEBUG 128 #define OIS_WIN32_JOYFF_DEBUG 0 29 29 30 30 #if (defined (_DEBUG) || defined(OIS_WIN32_JOYFF_DEBUG)) 31 31 #include <iostream> -
mac/MacHIDManager.cpp
406 406 switch(iType) 407 407 { 408 408 case OISJoyStick: 409 { 409 410 int totalDevs = totalDevices(iType); 410 411 int freeDevs = freeDevices(iType); 411 412 int devID = totalDevs - freeDevs; … … 413 414 obj = new MacJoyStick((*it)->combinedKey, bufferMode, *it, creator, devID); 414 415 (*it)->inUse = true; 415 416 return obj; 417 } 416 418 case OISTablet: 417 419 //Create MacTablet 418 420 break;
Note: See TracBrowser
for help on using the repository browser.