diff options
| author | Joe Ludwig <[email protected]> | 2013-07-17 18:26:59 -0700 |
|---|---|---|
| committer | Joe Ludwig <[email protected]> | 2013-07-17 18:26:59 -0700 |
| commit | e16ea21dc8a710237ade8413207f58d403c616a3 (patch) | |
| tree | 85dcfbda9881e4e022dedafefbc2727e2fd2aa59 /sp/src/public/tier1/ilocalize.h | |
| parent | Merge pull request #36 from AnAkIn1/fogplayerparams_fix (diff) | |
| download | source-sdk-2013-e16ea21dc8a710237ade8413207f58d403c616a3.tar.xz source-sdk-2013-e16ea21dc8a710237ade8413207f58d403c616a3.zip | |
* Added support for building shaders in your mod
* Added nav mesh support
* fixed many warnings and misc bugs
* Fixed the create*projects scripts in mp
* Added a bunch of stuff to .gitignore
Diffstat (limited to 'sp/src/public/tier1/ilocalize.h')
| -rw-r--r-- | sp/src/public/tier1/ilocalize.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sp/src/public/tier1/ilocalize.h b/sp/src/public/tier1/ilocalize.h index 348986ad..a3dd6bb8 100644 --- a/sp/src/public/tier1/ilocalize.h +++ b/sp/src/public/tier1/ilocalize.h @@ -135,7 +135,7 @@ private: typedef char locchar_t;
#define loc_snprintf Q_snprintf
- #define loc_sprintf_safe V_snprintf_safe
+ #define loc_sprintf_safe V_sprintf_safe
#define loc_sncat Q_strncat
#define loc_scat_safe V_strcat_safe
#define loc_sncpy Q_strncpy
@@ -148,7 +148,7 @@ private: typedef wchar_t locchar_t;
#define loc_snprintf V_snwprintf
- #define loc_sprintf_safe V_snwprintf_safe
+ #define loc_sprintf_safe V_swprintf_safe
#define loc_sncat V_wcsncat
#define loc_scat_safe V_wcscat_safe
#define loc_sncpy Q_wcsncpy
|