You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
AM2R-TimeTrials/scripts/sprite_validate.gml

14 lines
345 B

/// sprite_validate(index)
// Workaround for Android file access issues.
// Just realized this was pointless and the real issue was just Wanderer being a dip.
// However, since this still works just fine...
// Nothing's changing.
if (os_type != os_android) {
var file = sprite_exists(argument0);
return file;
} else {
return -1;
}