Changeset 1237
- Timestamp:
- Apr 18, 2012, 11:15:12 PM (9 years ago)
- Location:
- trunk
- Files:
-
- 3 edited
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/Makefile.am
r1236 r1237 3 3 4 4 liblol_a_SOURCES = \ 5 core.h tiler.cpp tiler.h dict.cpp dict.h debug/debug.h\5 core.h tiler.cpp tiler.h dict.cpp dict.h \ 6 6 audio.cpp audio.h scene.cpp scene.h font.cpp font.h layer.cpp layer.h \ 7 7 map.cpp map.h entity.cpp entity.h ticker.cpp ticker.h lolgl.h \ … … 13 13 platform.cpp platform.h sprite.cpp sprite.h \ 14 14 \ 15 lol/unit.h \15 lol/unit.h lol/debug.h \ 16 16 lol/math/vector.h lol/math/half.h lol/math/real.h lol/math/remez.h \ 17 17 \ -
trunk/src/core.h
r1236 r1237 63 63 64 64 // Base types 65 #include "lol/debug.h" 65 66 #include "math/trig.h" 66 67 #include "lol/math/half.h" … … 72 73 73 74 // Static classes 74 #include "debug/debug.h"75 75 #include "log.h" 76 76 #include "platform.h" -
trunk/src/lol/debug.h
-
Property
svn:keywords
set to
Id
r1236 r1237 22 22 { 23 23 24 static void Abort()24 static inline void Abort() 25 25 { 26 *(int *) NULL = 0;26 *(int *)0 = 0xdead; 27 27 } 28 28 -
Property
svn:keywords
set to
-
trunk/win32/lolcore.vcxproj
r1236 r1237 134 134 <ClInclude Include="..\src\debug\sphere.h" /> 135 135 <ClInclude Include="..\src\debug\stats.h" /> 136 <ClInclude Include="..\src\debug\debug.h" />137 136 <ClInclude Include="..\src\dict.h" /> 138 137 <ClInclude Include="..\src\eglapp.h" /> … … 153 152 <ClInclude Include="..\src\loldebug.h" /> 154 153 <ClInclude Include="..\src\lolgl.h" /> 154 <ClInclude Include="..\src\lol\debug.h" /> 155 155 <ClInclude Include="..\src\lol\math\half.h" /> 156 156 <ClInclude Include="..\src\lol\math\real.h" />
Note: See TracChangeset
for help on using the changeset viewer.