gs: remove unused path3 hack

This commit is contained in:
kojin 2021-10-20 20:25:15 -04:00 committed by lightningterror
parent 936cf5b60d
commit d70631477d
4 changed files with 0 additions and 13 deletions

View File

@ -750,11 +750,6 @@ void GSsetGameCRC(uint32 crc, int options)
s_gs->SetGameCRC(crc, options);
}
void GSgetLastTag(uint32* tag)
{
s_gs->GetLastTag(tag);
}
void GSgetTitleInfo2(char* dest, size_t length)
{
std::string s;

View File

@ -1800,7 +1800,6 @@ int GStest();
bool GSsetupRecording(std::string& filename);
void GSendRecording();
void GSsetGameCRC(uint32 crc, int options);
void GSgetLastTag(uint32* tag);
void GSgetTitleInfo2(char* dest, size_t length);
void GSsetFrameSkip(int frameskip);
void GSsetVsync(int vsync);

View File

@ -24,7 +24,6 @@ int GSState::s_n = 0;
GSState::GSState()
: m_version(6)
, m_path3hack(0)
, m_gsc(NULL)
, m_skip(0)
, m_skip_offset(0)

View File

@ -122,7 +122,6 @@ class GSState : public GSAlignedClass<32>
int m_version;
int m_sssize;
bool m_path3hack;
struct GSTransferBuffer
{
@ -259,11 +258,6 @@ public:
template<int index> void Transfer(const uint8* mem, uint32 size);
int Freeze(freezeData* fd, bool sizeonly);
int Defrost(const freezeData* fd);
void GetLastTag(uint32* tag)
{
*tag = m_path3hack;
m_path3hack = 0;
}
virtual void SetGameCRC(uint32 crc, int options);
void SetFrameSkip(int skip);
void SetRegsMem(uint8* basemem);