Remove VertexLoaderBase::IsInitialized

It is no longer relevant for the current set of loaders after 7030542546.  If it becomes relevant again, a static function named IsUsable or IsCompatibleWithCurrentMachine or something would be a better approach.
This commit is contained in:
Pokechu22
2021-03-11 11:23:13 -08:00
parent cafffff75e
commit fa7077763f
7 changed files with 33 additions and 60 deletions

View File

@ -18,7 +18,6 @@ public:
VertexLoaderX64(const TVtxDesc& vtx_desc, const VAT& vtx_att);
protected:
bool IsInitialized() override { return true; }
int RunVertices(DataReader src, DataReader dst, int count) override;
private: