aboutsummaryrefslogtreecommitdiff
path: root/src/jsifier.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/jsifier.js')
-rw-r--r--src/jsifier.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/jsifier.js b/src/jsifier.js
index ec7ad1c2..adcb38ee 100644
--- a/src/jsifier.js
+++ b/src/jsifier.js
@@ -953,7 +953,7 @@ function JSify(data, functionsOnly, givenFunctions) {
return '(' + makeSetValue(item.ident, 0, value + '.x', native, 0, 0, item.align) + ',' +
makeSetValue(item.ident, 4, value + '.y', native, 0, 0, item.align) + ',' +
makeSetValue(item.ident, 8, value + '.z', native, 0, 0, item.align) + ',' +
- makeSetValue(item.ident, 12, value + '.w', native, 0, 0, item.align) + ')';
+ makeSetValue(item.ident, 12, value + '.w', native, 0, 0, item.align) + ');';
}
switch (impl) {
case VAR_NATIVIZED:
@@ -1329,7 +1329,7 @@ function JSify(data, functionsOnly, givenFunctions) {
return base + '32x4(' + makeGetValue(value, 0, native, 0, item.unsigned, 0, item.align) + ',' +
makeGetValue(value, 4, native, 0, item.unsigned, 0, item.align) + ',' +
makeGetValue(value, 8, native, 0, item.unsigned, 0, item.align) + ',' +
- makeGetValue(value, 12, native, 0, item.unsigned, 0, item.align) + ')';
+ makeGetValue(value, 12, native, 0, item.unsigned, 0, item.align) + ');';
}
var impl = item.ident ? getVarImpl(item.funcData, item.ident) : VAR_EMULATED;
switch (impl) {