- Timestamp:
- 06/13/15 18:02:17 (10 years ago)
- Location:
- trunk/src
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/core/time.cc
r395 r401 17 17 #pragma intrinsic(__rdtsc) 18 18 #else 19 #if NV_ COMPILER == NV_GNUC && NV_PLATFORM == NV_WINDOWS19 #if NV_PLATFORM == NV_WINDOWS 20 20 // mingw doesn't have usleep nor nanosleep... 21 21 #include <windows.h> … … 71 71 Sleep( ms ); 72 72 #else 73 #if NV_ COMPILER == NV_GNUC && NV_PLATFORM == NV_WINDOWS73 #if NV_PLATFORM == NV_WINDOWS 74 74 Sleep( ms ); 75 75 #else -
trunk/src/formats/md5_loader.cc
r399 r401 10 10 #include "nv/stl/vector.hh" 11 11 #include "nv/io/std_stream.hh" 12 13 #include <stdio.h> // sscanf 14 #include <stdlib.h> // atof 12 15 13 16 using namespace nv; -
trunk/src/gui/gui_environment.cc
r395 r401 9 9 #include "nv/gui/gui_renderer.hh" 10 10 11 #include <algorithm> // std::find on std::list 11 12 12 13 /*
Note: See TracChangeset
for help on using the changeset viewer.