The 3.19 patch and what it means for SDK modders

What happens if you do this.

strText.clear();
strText = gDLL->getText("This is a test.");

Does the new message appear?
 
Nope

Code:
void CvGameTextMgr::getInterfaceCenterText(CvWString& strText)
{
	strText.clear();
	strText = gDLL->getText("This is a test.");
	
}

Just to give some more details im playing Civilization 4 - Beyond The Sword and the file path im editing is:

C:\Program Files\Firaxis Games\Sid Meier's Civilization 4\Beyond the Sword\CvGameCoreDLL\CvGameTextMgr.cpp
 
I'm at a loss, I'm not sure why it isn't working. Maybe somebody else will come along with an idea.
 
Just to give some more details im playing Civilization 4 - Beyond The Sword and the file path im editing is:

C:\Program Files\Firaxis Games\Sid Meier's Civilization 4\Beyond the Sword\CvGameCoreDLL\CvGameTextMgr.cpp

Just to be curious, did you compile your DLL? :mischief: Sorry if that's a stupid question...
 
Top Bottom