Skip to content

Commit

Permalink
Балбесофиксы
Browse files Browse the repository at this point in the history
  • Loading branch information
ForserX committed Sep 29, 2024
1 parent b17ffd9 commit c50450e
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/xrCore/XmlParser/AsureXML.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#include "AsureXML.h"
#include <magic_enum/magic_enum.hpp>

CXMLOverride::EOverrideMode CXMLOverride::GetOverrideMode(tinyxml2::XMLElement* Element)
CXMLOverride::EOverrideMode CXMLOverride::GetOverrideMode(tinyxml2::XMLElement* Element) const
{
if (Element->Attribute("override"))
{
Expand Down
2 changes: 1 addition & 1 deletion src/xrCore/XmlParser/AsureXML.h
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,5 @@ class CXMLOverride
void ApplyNewNode(tinyxml2::XMLNode* Parent, tinyxml2::XMLElement* Inner);
void CopyAttributes(tinyxml2::XMLElement* Dest, tinyxml2::XMLElement* Src);
void CopyChildren(tinyxml2::XMLElement* Dest, tinyxml2::XMLElement* Src);
EOverrideMode GetOverrideMode(tinyxml2::XMLElement* Element);
EOverrideMode GetOverrideMode(tinyxml2::XMLElement* Element) const;
};
1 change: 0 additions & 1 deletion src/xrParticles/ParticlesObject.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ xr_task_group ParticleObjectTasks;

PARTICLES_API const Fvector zero_vel = {0.f,0.f,0.f};
xr_list<CParticlesObject*> CParticlesObject::AllParticleObjects;
static xrCriticalSection particles_lock;

CParticlesObject::CParticlesObject (LPCSTR p_name, BOOL bAutoRemove, bool destroy_on_game_load) :
inherited (destroy_on_game_load)
Expand Down

0 comments on commit c50450e

Please sign in to comment.