Delete Sources/YTStockVolumeHUD.xm.bak

This commit is contained in:
arichornlover 2024-02-17 01:53:21 -06:00 committed by GitHub
parent 5b8c064d2c
commit 4892fef465
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1,21 +0,0 @@
#import "uYouPlus.h"
%group YTStockVolumeHUD // https://github.com/lilacvibes/YTStockVolumeHUD
%hook YTVolumeBarView
- (void)volumeChanged:(id)arg1 {
%orig(nil);
}
%end
%hook UIApplication
- (void)setSystemVolumeHUDEnabled:(BOOL)arg1 forAudioCategory:(id)arg2 {
%orig(true, arg2);
}
%end
%end
%ctor {
if (IS_ENABLED(@"stockVolumeHUD_enabled")) {
%init(YTStockVolumeHUD);
}
}