Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Commiting so I can go back to build 1226 to help an annoying Lithuani…
…an guy git-svn-id: svn://localhost/vcspc/trunk@37 9f344024-d43e-4b27-bde7-3d027e20192d
- Loading branch information
Showing
with
241 additions
and 59 deletions.
- +1 −1 VCS PC/CCamera.cpp
- +2 −0 VCS PC/CWanted.h
- +4 −0 VCS PC/EmpireMgr.cpp
- +2 −2 VCS PC/Frontend.cpp
- BIN VCS PC/Hud.cpp
- +1 −0 VCS PC/Hud.h
- +8 −0 VCS PC/Maths.h
- +3 −2 VCS PC/StdAfx.h
- +5 −0 VCS PC/TimeCycle.cpp
- +11 −0 VCS PC/TimeCycle.h
- +1 −1 VCS PC/Timer.cpp
- +6 −1 VCS PC/Timer.h
- +2 −0 VCS PC/VCS PC.vcxproj
- +6 −0 VCS PC/VCS PC.vcxproj.filters
- +175 −41 VCS PC/VCSPC.cpp
- +13 −10 VCS PC/WidescreenSupport.cpp
- +1 −1 VCS PC/WidescreenSupport.h
There are no files selected for viewing
Binary file not shown.
| @@ -0,0 +1,5 @@ | ||
| #include "StdAfx.h" | ||
| #include "TimeCycle.h" | ||
|
|
||
| int& CTimeCycle::m_CurrentStoredValue = *(int*)0xB79FD0; | ||
| CVector* const CTimeCycle::m_VectorToSun = (CVector*)0xB7CA50; |
| @@ -0,0 +1,11 @@ | ||
| #ifndef __TIMECYCLE | ||
| #define __TIMECYCLE | ||
|
|
||
| class CTimeCycle | ||
| { | ||
| public: | ||
| static int& m_CurrentStoredValue; | ||
| static CVector* const m_VectorToSun; | ||
| }; | ||
|
|
||
| #endif |
Oops, something went wrong.