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 7defc59b9d
commit 53cc9e0561
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
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;