| 1015 | #endif |
| 1016 | |
| 1017 | PiuTick PiuViewTicks(PiuView* self) |
| 1018 | { |
| 1019 | if ((*self)->idleTicks) |
| 1020 | return (*self)->idleTicks; |
| 1021 | #if mxPiuSloMo |
| 1022 | return modMilliseconds() / 60; |
| 1023 | #else |
| 1024 | return modMilliseconds(); |
| 1025 | #endif |
| 1026 | } |
| 1027 | |
| 1028 | void PiuViewUpdate(PiuView* self, PiuApplication* application) |
| 1029 | { |
no test coverage detected