You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It puts the game into trial mode if it doesn't have these files. This was disabled in the 2019 FNA update! :)
/// <summary>/// returns TRUE if the system is missing files pertinent to the full version./// </summary>/// <returns></returns>privateboolIsMissingFiles(){//BC 3-25-2019 Remove the pirate file check.returnfalse;if(!System.IO.File.Exists(@"WindowsContent/splash.bmp"))returntrue;if(!System.IO.File.Exists(@"Content/textures/cloudbump.xnb"))returntrue;if(!System.IO.File.Exists(@"Content/particles/glow.xnb"))returntrue;returnfalse;}
The text was updated successfully, but these errors were encountered:
It puts the game into trial mode if it doesn't have these files. This was disabled in the 2019 FNA update! :)
The text was updated successfully, but these errors were encountered: