Change 'Purge PPTC Cache' label & tooltip to reflect function behavior (#3601)

* Change PPTC purge label & tooltip

* Change Avalonia labels
This commit is contained in:
EmulationFanatic 2022-08-19 17:39:59 -06:00 committed by GitHub
parent 912dee860e
commit 9b4c46bf26
2 changed files with 4 additions and 4 deletions

View file

@ -154,9 +154,9 @@ namespace Ryujinx.Ui.Widgets
//
// _purgePtcCacheMenuItem
//
_purgePtcCacheMenuItem = new MenuItem("Purge PPTC Cache")
_purgePtcCacheMenuItem = new MenuItem("Queue PPTC Rebuild")
{
TooltipText = "Delete the Application's PPTC cache."
TooltipText = "Trigger PPTC to rebuild at boot time on the next game launch."
};
_purgePtcCacheMenuItem.Activated += PurgePtcCache_Clicked;