oculus2_psprite
changeset 23:fe9600396f65 tip
fixed visual studio project
author | John Tsiombikas <nuclear@member.fsf.org> |
---|---|
date | Thu, 22 Jan 2015 14:03:24 +0200 |
parents | fdfb911879df |
children | |
files | oculus2_psprite.vcxproj oculus2_psprite.vcxproj.filters src/main.c |
diffstat | 3 files changed, 22 insertions(+), 2 deletions(-) [+] |
line diff
1.1 --- a/oculus2_psprite.vcxproj Thu Jan 22 06:22:38 2015 +0200 1.2 +++ b/oculus2_psprite.vcxproj Thu Jan 22 14:03:24 2015 +0200 1.3 @@ -148,8 +148,14 @@ 1.4 </ItemDefinitionGroup> 1.5 <ItemGroup> 1.6 <ClCompile Include="src\main.c" /> 1.7 + <ClCompile Include="src\projectile.c" /> 1.8 + <ClCompile Include="src\sdr.c" /> 1.9 + </ItemGroup> 1.10 + <ItemGroup> 1.11 + <ClInclude Include="src\projectile.h" /> 1.12 + <ClInclude Include="src\sdr.h" /> 1.13 </ItemGroup> 1.14 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> 1.15 <ImportGroup Label="ExtensionTargets"> 1.16 </ImportGroup> 1.17 -</Project> 1.18 +</Project> 1.19 \ No newline at end of file
2.1 --- a/oculus2_psprite.vcxproj.filters Thu Jan 22 06:22:38 2015 +0200 2.2 +++ b/oculus2_psprite.vcxproj.filters Thu Jan 22 14:03:24 2015 +0200 2.3 @@ -10,5 +10,19 @@ 2.4 <ClCompile Include="src\main.c"> 2.5 <Filter>src</Filter> 2.6 </ClCompile> 2.7 + <ClCompile Include="src\projectile.c"> 2.8 + <Filter>src</Filter> 2.9 + </ClCompile> 2.10 + <ClCompile Include="src\sdr.c"> 2.11 + <Filter>src</Filter> 2.12 + </ClCompile> 2.13 + </ItemGroup> 2.14 + <ItemGroup> 2.15 + <ClInclude Include="src\projectile.h"> 2.16 + <Filter>src</Filter> 2.17 + </ClInclude> 2.18 + <ClInclude Include="src\sdr.h"> 2.19 + <Filter>src</Filter> 2.20 + </ClInclude> 2.21 </ItemGroup> 2.22 </Project> 2.23 \ No newline at end of file
3.1 --- a/src/main.c Thu Jan 22 06:22:38 2015 +0200 3.2 +++ b/src/main.c Thu Jan 22 14:03:24 2015 +0200 3.3 @@ -64,7 +64,7 @@ 3.4 3.5 int main(int argc, char **argv) 3.6 { 3.7 - unsigned int msec, prev_frame_msec; 3.8 + unsigned int msec, prev_frame_msec = 0; 3.9 3.10 if(parse_args(argc, argv) == -1) { 3.11 return 1;