comparison ios/dw.m @ 2648:2362cb4b7ef9

iOS: Fix another _dw_main_iteration() loop issue. Also center seems to be a differnet value on iOS and Mac ARM.
author bsmith@81767d24-ef19-dc11-ae90-00e081727c95
date Tue, 31 Aug 2021 09:18:04 +0000
parents 34c4cb84834a
children 76d876c441c9
comparison
equal deleted inserted replaced
2647:34c4cb84834a 2648:2362cb4b7ef9
3237 3237
3238 if(orig == (DWTID)-1) 3238 if(orig == (DWTID)-1)
3239 { 3239 {
3240 DWThread = curr; 3240 DWThread = curr;
3241 } 3241 }
3242 /* Process any pending events */ 3242 /* Process any pending events */
3243 while(_dw_main_iteration(until)) 3243 _dw_main_iteration(until);
3244 {
3245 /* Just loop */
3246 }
3247 if(orig == (DWTID)-1) 3244 if(orig == (DWTID)-1)
3248 { 3245 {
3249 DWThread = orig; 3246 DWThread = orig;
3250 } 3247 }
3251 } 3248 }