debug, mobile, connection login state

Signed-off-by: dignow <linlong1265@gmail.com>
This commit is contained in:
dignow
2023-06-23 12:49:36 +08:00
parent ed53fa37fc
commit 71db0e99b5
3 changed files with 11 additions and 38 deletions

View File

@@ -1197,17 +1197,11 @@ pub fn main_check_mouse_time() {
}
pub fn main_get_mouse_time() -> f64 {
#[cfg(all(
not(any(target_os = "android", target_os = "ios")),
feature = "flutter"
))]
#[cfg(not(any(target_os = "android", target_os = "ios")))]
{
get_mouse_time()
}
#[cfg(not(all(
not(any(target_os = "android", target_os = "ios")),
feature = "flutter"
)))]
#[cfg(any(target_os = "android", target_os = "ios"))]
{
0.0
}