We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
tracef
w4 run-native
tracef does not format arguments when running using run-native.
run-native
Example code:
#include "wasm4.h" void start() { tracef("String: %s", "Ok"); tracef("Int: %d", 42); }
Example output with w4 run:
w4 run
String: Ok Int: 42
Example out with w4 run-native:
String: %s Int: %d
Edit: I wrote this issue before I found the commit responsible, I feel it's still worthwhile to have an issue to track it if that's okay?
The text was updated successfully, but these errors were encountered:
Yes, thanks for opening this!
I have no idea why enabling vprintf crashes on release builds only, but if you get it working, please open a PR 😄
vprintf
Sorry, something went wrong.
Fix aduros#417
3212a19
No branches or pull requests
tracef
does not format arguments when running usingrun-native
.Example code:
Example output with
w4 run
:Example out with
w4 run-native
:Edit:
I wrote this issue before I found the commit responsible, I feel it's still worthwhile to have an issue to track it if that's okay?
The text was updated successfully, but these errors were encountered: