auth: Skip auth on mobile. #97

This commit is contained in:
2025-02-12 19:25:05 -05:00
parent 017a74c4e4
commit 15df4ac236
5 changed files with 129 additions and 4 deletions

View File

@ -639,3 +639,8 @@ int tf_util_backtrace(void** buffer, int count)
return backtrace(buffer, count);
#endif
}
bool tf_util_is_mobile()
{
return TF_IS_MOBILE != 0;
}