Skip to content

Commit

Permalink
Merge pull request #11 from cboulay/msvc2013
Browse files Browse the repository at this point in the history
Fix compilation in Visual Studio 2013.
  • Loading branch information
inspirit committed Mar 9, 2015
2 parents d55db09 + 5923372 commit 5bc152c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions src/ps3eye.cpp
Expand Up @@ -3,6 +3,7 @@

#if defined WIN32 || defined _WIN32 || defined WINCE
#include <windows.h>
#include <algorithm>
#else
#include <sys/time.h>
#include <time.h>
Expand Down
4 changes: 2 additions & 2 deletions src/ps3eye.h
Expand Up @@ -30,9 +30,9 @@
#include <stdint.h>

#if defined(DEBUG)
#define debug(x...) fprintf(stdout,x)
#define debug(x,...) fprintf(stdout,x)
#else
#define debug(x...)
#define debug(x,...)
#endif


Expand Down

0 comments on commit 5bc152c

Please sign in to comment.