filesystem: rename IVFileSystem009 to IFileSystem to avoid UBsan errors when debugging a mod that calls this interface using original headers

This commit is contained in:
Alibek Omarov 2024-11-04 13:47:55 +03:00
parent 96b95db7c8
commit d8eb918cea
2 changed files with 2 additions and 2 deletions

View file

@ -81,7 +81,7 @@ static inline void CopyAndFixSlashes( char *p, const char *in, size_t size )
COM_FixSlashes( p );
}
class CXashFS : public IVFileSystem009
class CXashFS : public IFileSystem
{
private:
class CSearchState

View file

@ -40,7 +40,7 @@ public:
virtual ~IBaseInterface() {}
};
class IVFileSystem009 : public IBaseInterface {
class IFileSystem : public IBaseInterface {
public:
virtual void Mount() = 0; /* linkage=_ZN11IFileSystem5MountEv */