diff --git a/mobile/touches_ios.go b/mobile/touches_ios.go index d536ed516..47c1b3d52 100644 --- a/mobile/touches_ios.go +++ b/mobile/touches_ios.go @@ -30,7 +30,7 @@ func getIDFromPtr(ptr int64) int { } maxID := 0 for _, id := range ptrToID { - if maxID > id { + if maxID < id { maxID = id } }