From c2efba6907fab934a04959b9bb644cf7141cc955 Mon Sep 17 00:00:00 2001 From: Ash Wolf Date: Sat, 1 Jul 2023 23:04:04 +0100 Subject: matched T2DLL as well as i can --- src/T2DLL/T2MoverPlugin.cpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'src/T2DLL/T2MoverPlugin.cpp') diff --git a/src/T2DLL/T2MoverPlugin.cpp b/src/T2DLL/T2MoverPlugin.cpp index 0b38037..95b4e7e 100644 --- a/src/T2DLL/T2MoverPlugin.cpp +++ b/src/T2DLL/T2MoverPlugin.cpp @@ -17,13 +17,13 @@ BOOL T2MoverPlugin::LoadAllTemplatePlugin(T2WorldDef* worldDef, T2TemplatePlugin typedef T2TemplatePlugin *(MSVC_STDCALL* ConstructTemplatePluginType) (T2PluginSpecifier *, CResFile *, T2WorldDef *, T2MoverPlugin *); void T2MoverPlugin::LoadT2MoverDef(T2WorldDef* worldDef) { - ConstructTemplatePluginType func = (ConstructTemplatePluginType) GetProcAddress((HMODULE) mModuleHandle, "ConstructTemplatePlugin"); + ConstructTemplatePluginType theFunc = (ConstructTemplatePluginType) GetProcAddress((HMODULE) mModuleHandle, "ConstructTemplatePlugin"); #line 26 - _ASSERT(func); + _ASSERT(theFunc); - CResFile resFile; - resFile.OpenResource(mModuleHandle, 1, 'MvDf'); - T2TemplatePlugin *plugin = func(&mSpecifier, &resFile, worldDef, this); + CResFile file; + file.OpenResource(mModuleHandle, 1, 'MvDf'); + T2TemplatePlugin *theDef = theFunc(&mSpecifier, &file, worldDef, this); - mTemplatePlugin = plugin; + mTemplatePlugin = theDef; } -- cgit v1.2.3