aboutsummaryrefslogtreecommitdiff
path: root/system/include
diff options
context:
space:
mode:
authorChad Austin <chad@chadaustin.me>2014-04-29 22:09:13 -0700
committerChad Austin <chad@chadaustin.me>2014-04-29 22:09:13 -0700
commit7da733906454466f4ae22d1a1541ea152f5025db (patch)
treebd803de99a112fe5607ab0026d26078c4f39d3ff /system/include
parentfee40ad3a5f44adc4b07f41c8f552949a20ce953 (diff)
fix embind/asm.js in PRECISE_F32 mode
Diffstat (limited to 'system/include')
-rw-r--r--system/include/emscripten/bind.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/system/include/emscripten/bind.h b/system/include/emscripten/bind.h
index 699e834b..eede0755 100644
--- a/system/include/emscripten/bind.h
+++ b/system/include/emscripten/bind.h
@@ -330,7 +330,7 @@ namespace emscripten {
template<>
struct SignatureCode<float> {
static constexpr char get() {
- return 'd';
+ return 'f';
}
};