• Unfortunately, we have experienced significant hard drive damage that requires urgent maintenance and rebuilding. The forum will be a state of read only until we install our new drives and rebuild all the configurations needed. Please follow our Facebook page for updates, we will be back up shortly! (The forum could go offline at any given time due to the nature of the failed drives whilst awaiting the upgrades.) When you see an Incapsula error, you know we are in the process of migration.

Game Settings Save Problem Fixed..

Banned
Banned
Joined
Nov 26, 2012
Messages
245
Reaction score
105
CPP: PopupScreenOption.cpp

Search:
Code:
VOID ApplyCallBack(LTBOOL bReturn, void *pData)
{
	CPopScreenOption *pThisScreen = (CPopScreenOption *)pData;
	if(bReturn)
	{
		pThisScreen->ApplyOptionSetting();  // Option Save
		g_pScreenMain->ShowListTab();  
	}
};

Edit:
Code:
VOID ApplyCallBack(LTBOOL bReturn, void *pData)
{
	CPopScreenOption *pThisScreen = (CPopScreenOption *)pData;
	if(bReturn)
	{
		g_pScreenMain->ShowListTab();  
	}
};

Game Settings Save Problem Fixed..
 
Skilled Illusionist
Joined
May 6, 2012
Messages
309
Reaction score
33
lol no can't be ... do you know what you are saying? to remove this line:
pThisScreen->ApplyOptionSetting();
totally wrong!
 
Junior Spellweaver
Joined
Apr 10, 2010
Messages
183
Reaction score
27
Yep, you can't remove the line, it just make the settings seems to be saved
But the true is not,
and the point is ApplyOptionSetting(); should be there
 
Back
Top