Adventure Game Studio

AGS Support => Beginners' Technical Questions => Topic started by: Slasher on Fri 12/08/2022 10:15:08

Title: Delete save button warning... SOLVED
Post by: Slasher on Fri 12/08/2022 10:15:08
Hi,

EDIT: I managed to get into my Norton Virus panel and do some deleting...More luck then judgement I guess... Problem solved  (nod)

Delete  Save button halted by virus warning... Can not longer delete saves!

This has just started....

Maybe it is from before saves more variables added and now it won't delete them?

AGS Editor .NET (Build 3.5.1.16)

Code (ags) Select
function btnDeleteSave_OnClick(GUIControl *control, MouseButton button)
{
  if (lstSaveGamesList.SelectedIndex >= 0)
  {
    DeleteSaveSlot(lstSaveGamesList.SaveGameSlots[lstSaveGamesList.SelectedIndex]);
    lstSaveGamesList.FillSaveGameList();
  }
}
Title: Re: Delete save button warning... SOLVED
Post by: Khris on Fri 12/08/2022 13:23:11
Just FYI, if you're running Windows 10 or 11, you can safely uninstall any 3rd party antivirus (a free one I hope) and use Windows' own Defender instead.
Don't waste memory and especially money on antivirus software.
Title: Re: Delete save button warning... SOLVED
Post by: Slasher on Fri 12/08/2022 16:39:16
Quote from: Khris on Fri 12/08/2022 13:23:11
Just FYI, if you're running Windows 10 or 11, you can safely uninstall any 3rd party antivirus (a free one I hope) and use Windows' own Defender instead.
Don't waste memory and especially money on antivirus software.

Hi Khris,

Norton came free with my BT account...

Cheers