Commit a2ecfee9 authored by Phillip Castaneda's avatar Phillip Castaneda
Browse files

Fixing case sensitivity issues

parent ce6fcfcd
......@@ -38,12 +38,10 @@ Global
{7AC600E2-2B46-4204-8DEB-9E49A9BAF65F}.Release|x64.Build.0 = Release|x64
{D1912D13-C99D-4959-ABDC-62BF71AD5A1A}.Debug|Win32.ActiveCfg = Debug|Win32
{D1912D13-C99D-4959-ABDC-62BF71AD5A1A}.Debug|Win32.Build.0 = Debug|Win32
{D1912D13-C99D-4959-ABDC-62BF71AD5A1A}.Debug|x64.ActiveCfg = Debug|x64
{D1912D13-C99D-4959-ABDC-62BF71AD5A1A}.Debug|x64.Build.0 = Debug|x64
{D1912D13-C99D-4959-ABDC-62BF71AD5A1A}.Debug|x64.ActiveCfg = Debug|Win32
{D1912D13-C99D-4959-ABDC-62BF71AD5A1A}.Release|Win32.ActiveCfg = Release|Win32
{D1912D13-C99D-4959-ABDC-62BF71AD5A1A}.Release|Win32.Build.0 = Release|Win32
{D1912D13-C99D-4959-ABDC-62BF71AD5A1A}.Release|x64.ActiveCfg = Release|x64
{D1912D13-C99D-4959-ABDC-62BF71AD5A1A}.Release|x64.Build.0 = Release|x64
{D1912D13-C99D-4959-ABDC-62BF71AD5A1A}.Release|x64.ActiveCfg = Release|Win32
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
......
......@@ -25,7 +25,7 @@ restrictions:
#include "OISPrereqs.h"
#include "OISForceFeedback.h"
#include "Win32/Win32Prereqs.h"
#include "win32/Win32Prereqs.h"
namespace OIS
{
......
......@@ -25,7 +25,7 @@ restrictions:
#include "OISInputManager.h"
#include "OISFactoryCreator.h"
#include "Win32/Win32Prereqs.h"
#include "win32/Win32Prereqs.h"
namespace OIS
{
......
......@@ -24,7 +24,7 @@ restrictions:
#define _WIN32_JOYSTICK_H_EADER_
#include "OISJoyStick.h"
#include "Win32/Win32Prereqs.h"
#include "win32/Win32Prereqs.h"
namespace OIS
{
......
......@@ -24,7 +24,7 @@ restrictions:
#define _WIN32_KEYBOARD_H_EADER_
#include "OISKeyboard.h"
#include "Win32/Win32Prereqs.h"
#include "win32/Win32Prereqs.h"
namespace OIS
{
......
......@@ -24,7 +24,7 @@ restrictions:
#define _WIN32_MOUSE_H_EADER_
#include "OISMouse.h"
#include "Win32/Win32Prereqs.h"
#include "win32/Win32Prereqs.h"
namespace OIS
{
......
......@@ -20,9 +20,9 @@ restrictions:
3. This notice may not be removed or altered from any source distribution.
*/
#include "Win32/Win32ForceFeedback.h"
#include "win32/Win32ForceFeedback.h"
#include "OISException.h"
#include <Math.h>
#include <math.h>
// 0 = No trace; 1 = Important traces; 2 = Debug traces
#define OIS_WIN32_JOYFF_DEBUG 1
......
......@@ -20,10 +20,10 @@ restrictions:
3. This notice may not be removed or altered from any source distribution.
*/
#include "Win32/Win32InputManager.h"
#include "Win32/Win32Keyboard.h"
#include "Win32/Win32Mouse.h"
#include "Win32/Win32JoyStick.h"
#include "win32/Win32InputManager.h"
#include "win32/Win32KeyBoard.h"
#include "win32/Win32Mouse.h"
#include "win32/Win32JoyStick.h"
#include "OISException.h"
using namespace OIS;
......
......@@ -20,9 +20,9 @@ restrictions:
3. This notice may not be removed or altered from any source distribution.
*/
#include "Win32/Win32JoyStick.h"
#include "Win32/Win32InputManager.h"
#include "Win32/Win32ForceFeedback.h"
#include "win32/Win32JoyStick.h"
#include "win32/Win32InputManager.h"
#include "win32/Win32ForceFeedback.h"
#include "OISEvents.h"
#include "OISException.h"
......
......@@ -20,8 +20,8 @@ restrictions:
3. This notice may not be removed or altered from any source distribution.
*/
#include "Win32/Win32InputManager.h"
#include "Win32/Win32KeyBoard.h"
#include "win32/Win32InputManager.h"
#include "win32/Win32KeyBoard.h"
#include "OISException.h"
#include "OISEvents.h"
#include <sstream>
......
......@@ -20,8 +20,8 @@ restrictions:
3. This notice may not be removed or altered from any source distribution.
*/
#include "Win32/Win32Mouse.h"
#include "Win32/Win32InputManager.h"
#include "win32/Win32Mouse.h"
#include "win32/Win32InputManager.h"
#include "OISException.h"
#include "OISEvents.h"
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment