Skip to content
This repository has been archived by the owner. It is now read-only.
Permalink
Browse files
Merge pull request #389 from Nick007J/master
Weather
  • Loading branch information
aap committed Apr 9, 2020
2 parents 26fb534 + 6b06ee2 commit ee057cb427796bc584b143024d1ee01da05269b9
Showing with 488 additions and 7 deletions.
  1. +1 −1 src/core/re3.cpp
  2. +1 −0 src/render/Timecycle.h
  3. +464 −6 src/render/Weather.cpp
  4. +22 −0 src/render/Weather.h
@@ -458,7 +458,7 @@ void re3_debug(const char *format, ...)
vsprintf_s(re3_buff, re3_buffsize, format, va); vsprintf_s(re3_buff, re3_buffsize, format, va);
va_end(va); va_end(va);


// printf("%s", re3_buff); printf("%s", re3_buff);
CDebug::DebugAddText(re3_buff); CDebug::DebugAddText(re3_buff);
} }


@@ -136,6 +136,7 @@ class CTimeCycle
static int GetFogRed(void) { return m_nCurrentFogColourRed; } static int GetFogRed(void) { return m_nCurrentFogColourRed; }
static int GetFogGreen(void) { return m_nCurrentFogColourGreen; } static int GetFogGreen(void) { return m_nCurrentFogColourGreen; }
static int GetFogBlue(void) { return m_nCurrentFogColourBlue; } static int GetFogBlue(void) { return m_nCurrentFogColourBlue; }
static int GetFogReduction(void) { return m_FogReduction; }


static void Initialise(void); static void Initialise(void);
static void Update(void); static void Update(void);

0 comments on commit ee057cb

Please sign in to comment.