mobile: Bug fix: calc ID for touches

This commit is contained in:
Hajime Hoshi 2016-06-26 16:18:08 +09:00
parent f537378f2a
commit a275f7e7cd

View File

@ -30,7 +30,7 @@ func getIDFromPtr(ptr int64) int {
} }
maxID := 0 maxID := 0
for _, id := range ptrToID { for _, id := range ptrToID {
if maxID > id { if maxID < id {
maxID = id maxID = id
} }
} }