Skip to content

Commit 3043700

Browse files
committed
xrGame/visual_memory_params.*: replace LPCSTR with pcstr
1 parent a25e635 commit 3043700

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/xrGame/visual_memory_params.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
#include "visual_memory_params.h"
1111
#include "memory_space.h"
1212

13-
void CVisionParameters::Load(LPCSTR section, bool not_a_stalker)
13+
void CVisionParameters::Load(pcstr section, bool not_a_stalker)
1414
{
1515
m_transparency_threshold = pSettings->r_float(section, "transparency_threshold");
1616
m_still_visible_time = READ_IF_EXISTS(pSettings, r_u32, section, "still_visible_time", 0);

src/xrGame/visual_memory_params.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,5 +21,5 @@ struct CVisionParameters
2121
float m_luminocity_factor;
2222
u32 m_still_visible_time;
2323

24-
void Load(LPCSTR section, bool not_a_stalker);
24+
void Load(pcstr section, bool not_a_stalker);
2525
};

0 commit comments

Comments
 (0)