Changeset 1207
- Timestamp:
- Apr 8, 2012, 4:55:08 PM (11 years ago)
- Location:
- trunk
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/monsterz/monsterz.cpp
r1189 r1207 38 38 Application app("Monsterz", ivec2(640, 480), 60.0f); 39 39 40 #if defined _MSC_VER && !defined _XBOX 41 _chdir("..\\.."); 42 #elif defined _WIN32 && !defined _XBOX 40 #if defined _WIN32 && !defined _XBOX 43 41 _chdir(".."); /* Temporary Win32 hack */ 44 42 #endif -
trunk/mrpigeon/mrpigeon.cpp
r1205 r1207 7 7 #if defined HAVE_CONFIG_H 8 8 # include "config.h" 9 #endif 10 11 #if defined _WIN32 12 # include <direct.h> 9 13 #endif 10 14 … … 139 143 { 140 144 Application app("MrPigeon", ivec2(512,384), 60.0f); 145 146 #if defined _WIN32 && !defined _XBOX 147 _chdir(".."); /* Temporary Win32 hack */ 148 #endif 149 141 150 new DebugFps(2, 370); 142 151 new MrPigeon(); -
trunk/src/image/codec/gdiplus-image.cpp
r1204 r1207 103 103 for (int x = 0; x < size.x; x++) 104 104 { 105 uint8_t tmp = p[0]; 106 *p++ = p[1]; 107 *p++ = p[1]; 108 *p++ = p[1]; 109 *p++ = tmp; 105 uint8_t tmp = p[2]; 106 p[2] = p[0]; 107 p[0] = tmp; 108 p += 4; 110 109 } 111 110 -
trunk/win32/mrpigeon.vcxproj
r1195 r1207 20 20 </ItemGroup> 21 21 <ItemGroup> 22 <ClInclude Include="..\mrpigeon\enemy.h" /> 23 </ItemGroup> 24 <ItemGroup> 22 25 <ClInclude Include="..\mrpigeon\mrpigeon.h" /> 23 26 </ItemGroup> 24 27 <ItemGroup> 28 <ClInclude Include="..\mrpigeon\player.h" /> 29 </ItemGroup> 30 <ItemGroup> 31 <ClCompile Include="..\mrpigeon\enemy.cpp" /> 32 </ItemGroup> 33 <ItemGroup> 25 34 <ClCompile Include="..\mrpigeon\mrpigeon.cpp" /> 35 </ItemGroup> 36 <ItemGroup> 37 <ClCompile Include="..\mrpigeon\player.cpp" /> 26 38 </ItemGroup> 27 39 <ItemGroup>
Note: See TracChangeset
for help on using the changeset viewer.