remove this condition because it's obsolete in 2.2
Some checks are pending
Build Binaries / Build Windows (push) Waiting to run
Build Binaries / Build macOS (push) Waiting to run
Build Binaries / Build Android (64-bit) (push) Waiting to run
Build Binaries / Build Android (32-bit) (push) Waiting to run
Build Binaries / Publish (push) Blocked by required conditions

This commit is contained in:
dankmeme01 2024-09-18 13:39:43 +02:00
parent 6add0cbfec
commit b488755190

View file

@ -123,7 +123,7 @@ struct FileUtilsUpdatePaths : Modify<FileUtilsUpdatePaths, CCFileUtils> {
// this is only an issue because cocos itself requests the full path for this in CCSprite,
// and with a lot of search paths (specially ones added by geode), this can cause a significant amount of lag.
// GJ_GameSheetIcons.png comes from an improper plist distributed in GDS :P
if (filename == "cc_2x2_white_image"sv || filename == "GJ_GameSheetIcons.png"sv) {
if (filename == "cc_2x2_white_image"sv) {
return filename;
}