Gems/Maestro
Signed-off-by: Esteban Papp <81431996+amznestebanpapp@users.noreply.github.com>
This commit is contained in:
@@ -85,7 +85,7 @@ struct ISurfaceType
|
||||
};
|
||||
struct SBreakable2DParams
|
||||
{
|
||||
string particle_effect;
|
||||
AZStd::string particle_effect;
|
||||
float blast_radius;
|
||||
float blast_radius_first;
|
||||
float vert_size_spread;
|
||||
@@ -97,12 +97,12 @@ struct ISurfaceType
|
||||
float shard_density;
|
||||
int use_edge_alpha;
|
||||
float crack_decal_scale;
|
||||
string crack_decal_mtl;
|
||||
AZStd::string crack_decal_mtl;
|
||||
float max_fracture;
|
||||
string full_fracture_fx;
|
||||
string fracture_fx;
|
||||
AZStd::string full_fracture_fx;
|
||||
AZStd::string fracture_fx;
|
||||
int no_procedural_full_fracture;
|
||||
string broken_mtl;
|
||||
AZStd::string broken_mtl;
|
||||
float destroy_timeout;
|
||||
float destroy_timeout_spread;
|
||||
|
||||
@@ -125,8 +125,8 @@ struct ISurfaceType
|
||||
};
|
||||
struct SBreakageParticles
|
||||
{
|
||||
string type;
|
||||
string particle_effect;
|
||||
AZStd::string type;
|
||||
AZStd::string particle_effect;
|
||||
int count_per_unit;
|
||||
float count_scale;
|
||||
float scale;
|
||||
|
||||
@@ -283,7 +283,7 @@ public:
|
||||
MOCK_METHOD0(EF_GetShaderMissLogPath,
|
||||
const char*());
|
||||
MOCK_METHOD1(EF_GetShaderNames,
|
||||
string * (int& nNumShaders));
|
||||
AZStd::string * (int& nNumShaders));
|
||||
MOCK_METHOD1(EF_ReloadFile,
|
||||
bool(const char* szFileName));
|
||||
MOCK_METHOD1(EF_ReloadFile_Request,
|
||||
|
||||
@@ -122,7 +122,7 @@ public:
|
||||
const SFileVersion&());
|
||||
|
||||
MOCK_METHOD1(AddCVarGroupDirectory,
|
||||
void(const string&));
|
||||
void(const AZStd::string&));
|
||||
MOCK_METHOD0(SaveConfiguration,
|
||||
void());
|
||||
MOCK_METHOD3(LoadConfiguration,
|
||||
|
||||
@@ -349,23 +349,23 @@ void _makepath(char* path, const char* drive, const char* dir, const char* filen
|
||||
}
|
||||
if (dir && dir[0])
|
||||
{
|
||||
cry_strcat(tmp, dir);
|
||||
azstrcat(tmp, dir);
|
||||
ch = tmp[strlen(tmp) - 1];
|
||||
if (ch != '/' && ch != '\\')
|
||||
{
|
||||
cry_strcat(tmp, "\\");
|
||||
azstrcat(tmp, "\\");
|
||||
}
|
||||
}
|
||||
if (filename && filename[0])
|
||||
{
|
||||
cry_strcat(tmp, filename);
|
||||
azstrcat(tmp, filename);
|
||||
if (ext && ext[0])
|
||||
{
|
||||
if (ext[0] != '.')
|
||||
{
|
||||
cry_strcat(tmp, ".");
|
||||
azstrcat(tmp, ".");
|
||||
}
|
||||
cry_strcat(tmp, ext);
|
||||
azstrcat(tmp, ext);
|
||||
}
|
||||
}
|
||||
azstrcpy(path, strlen(tmp) + 1, tmp);
|
||||
|
||||
@@ -499,7 +499,7 @@ inline void CryDebugStr([[maybe_unused]] const char* format, ...)
|
||||
va_start(ArgList, format);
|
||||
azvsnprintf(szBuffer,sizeof(szBuffer)-1, format, ArgList);
|
||||
va_end(ArgList);
|
||||
cry_strcat(szBuffer,"\n");
|
||||
azstrcat(szBuffer,"\n");
|
||||
OutputDebugString(szBuffer);
|
||||
#endif
|
||||
*/
|
||||
|
||||
@@ -1545,7 +1545,7 @@ const char* CXConsole::GetFlagsString(const uint32 dwFlags)
|
||||
static char sFlags[256];
|
||||
|
||||
// hiding this makes it a bit more difficult for cheaters
|
||||
// if(dwFlags&VF_CHEAT) cry_strcat( sFlags,"CHEAT, ");
|
||||
// if(dwFlags&VF_CHEAT) azstrcat( sFlags,"CHEAT, ");
|
||||
|
||||
azstrcpy(sFlags, "");
|
||||
|
||||
|
||||
Reference in New Issue
Block a user