-
Notifications
You must be signed in to change notification settings - Fork 3k
Use wait_ms(int) instead of wait(float) #8302
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Ready for CI , can you rebase to resolve the conflict please? |
Small space savings, the casting from int to float will bloat the code a bit. Using wait(1.0f) for example would avoid it, but seems a bit silly to use floats for anything unless really needed (in embedded products).
1d98a67
to
de77695
Compare
Rebased, git resolved it with a 3-way merge automatically. |
/morph build |
Build : SUCCESSBuild number : 3379 Triggering tests/morph test |
Exporter Build : SUCCESSBuild number : 3014 |
Small space savings, the casting from int to float will bloat
the code a bit. Using wait(1.0f) for example would avoid it,
but seems a bit silly to use floats for anything unless
really needed (in embedded products).