Skip to content

Commit

Permalink
xrGame/visual_memory_params.*: replace LPCSTR with pcstr
Browse files Browse the repository at this point in the history
  • Loading branch information
Xottab-DUTY committed Jan 6, 2018
1 parent a25e635 commit 3043700
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/xrGame/visual_memory_params.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
#include "visual_memory_params.h"
#include "memory_space.h"

void CVisionParameters::Load(LPCSTR section, bool not_a_stalker)
void CVisionParameters::Load(pcstr section, bool not_a_stalker)
{
m_transparency_threshold = pSettings->r_float(section, "transparency_threshold");
m_still_visible_time = READ_IF_EXISTS(pSettings, r_u32, section, "still_visible_time", 0);
Expand Down
2 changes: 1 addition & 1 deletion src/xrGame/visual_memory_params.h
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,5 @@ struct CVisionParameters
float m_luminocity_factor;
u32 m_still_visible_time;

void Load(LPCSTR section, bool not_a_stalker);
void Load(pcstr section, bool not_a_stalker);
};

0 comments on commit 3043700

Please sign in to comment.