Changeset 357
- Timestamp:
- 04/29/15 14:10:49 (10 years ago)
- Location:
- trunk
- Files:
-
- 2 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/nv/core/common.hh
r347 r357 101 101 #endif 102 102 103 #if NV_COMPILER == NV_MSVC && NV_COMP_VER < 1 600104 #error "MSVC 201 2+ required!"103 #if NV_COMPILER == NV_MSVC && NV_COMP_VER < 1700 104 #error "MSVC 2013+ required!" 105 105 #endif 106 106 … … 112 112 #error "clang 3.2+ required!" 113 113 #endif 114 115 // Feature incoming - remove and find when constexpr compiler is used 116 #define NV_CONSTEXPR 117 #define NV_CONSTEXPR_CONST const 114 118 115 119 #if NV_COMPILER == NV_MSVC … … 196 200 { 197 201 protected: 198 noncopyable() = default;202 NV_CONSTEXPR noncopyable() = default; 199 203 ~noncopyable() = default; 200 204 noncopyable( const noncopyable& ) = delete; -
trunk/nv/core/io_event.hh
r338 r357 62 62 /// True if pressed 63 63 bool pressed; 64 65 /// native scan code 66 int native; 64 67 }; 65 68 -
trunk/src/sdl/sdl_input.cc
r338 r357 98 98 default : break; 99 99 } 100 101 kevent.key.native = ke.keysym.scancode; 100 102 101 103 // If key was understood by nv, then it's valid, otherwise ignored
Note: See TracChangeset
for help on using the changeset viewer.