You've already forked AM2R-Community-Updates
mirror of
https://github.com/izzy2lost/AM2R-Community-Updates.git
synced 2026-03-10 11:23:35 -07:00
14 lines
345 B
Plaintext
14 lines
345 B
Plaintext
/// 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;
|
|
}
|