Jump to content

How can I remove the following information


Recommended Posts

I am in distribution mode for which the information should not be seen on the game screen and I need help to remove it from the source.

 

https://metin2.download/picture/q19bxKqHcV1d8nEXriTDNWFfDd9URFBb/.gif

 

recently upgrade my project to vs19 and got this drawback

Edited by Metin2 Dev
Core X - External 2 Internal
Link to comment
Share on other sites

  • Honorable Member

UserInterface.cpp

//Find
#ifdef _DISTRIBUTE
		stRegisterDebugFlag ="__DEBUG__ = 0";
#else
		stRegisterDebugFlag ="__DEBUG__ = 1";
#endif
  
///Change
#ifdef _DEBUG
		stRegisterDebugFlag ="__DEBUG__ = 1";
#else
		stRegisterDebugFlag ="__DEBUG__ = 0";
#endif

 

  • Love 1

 

Link to comment
Share on other sites

On 11/25/2020 at 9:23 AM, Mali61 said:

UserInterface.cpp


//Find
#ifdef _DISTRIBUTE
		stRegisterDebugFlag ="__DEBUG__ = 0";
#else
		stRegisterDebugFlag ="__DEBUG__ = 1";
#endif
  
///Change
#ifdef _DEBUG
		stRegisterDebugFlag ="__DEBUG__ = 1";
#else
		stRegisterDebugFlag ="__DEBUG__ = 0";
#endif

 

thank you very much, works fine

  • Good 1
Link to comment
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now

Announcements



×
×
  • Create New...

Important Information

Terms of Use / Privacy Policy / Guidelines / We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.