[Video] Rename CGlide64WtlModule to CProject64VideoWtlModule

This commit is contained in:
zilmar 2017-08-22 17:38:44 +10:00
parent bf53126ac0
commit 7da3180fb6
1 changed files with 5 additions and 5 deletions

View File

@ -47,25 +47,25 @@ extern bool g_ghq_use;
extern CriticalSection * g_ProcessDListCS;
class CGlide64WtlModule :
class CProject64VideoWtlModule :
public CAppModule
{
public:
CGlide64WtlModule(HINSTANCE hinst)
CProject64VideoWtlModule(HINSTANCE hinst)
{
Init(NULL, hinst);
}
virtual ~CGlide64WtlModule(void)
virtual ~CProject64VideoWtlModule(void)
{
Term();
}
};
CGlide64WtlModule * WtlModule = NULL;
CProject64VideoWtlModule * WtlModule = NULL;
void ConfigInit(void * hinst)
{
WtlModule = new CGlide64WtlModule((HINSTANCE)hinst);
WtlModule = new CProject64VideoWtlModule((HINSTANCE)hinst);
}
void ConfigCleanup(void)