@microtronics/studio-cli 0.59.0 → 0.60.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +6 -0
- package/dist/main.js +16 -16
- package/out/dde/fileGenerators/dloLocalData.js +1 -2
- package/package.json +1 -1
|
@@ -220,8 +220,7 @@ function buildHelperFunctions(pawnSource, usedFormats) {
|
|
|
220
220
|
if (usedFormats.has('bin')) {
|
|
221
221
|
pawnSource('');
|
|
222
222
|
pawnSource('stock _DDE_fmt_bin(aData{}, mem{}, dim) {');
|
|
223
|
-
pawnSource(
|
|
224
|
-
pawnSource('\tmemtostr(szTemp, mem, 0, dim);');
|
|
223
|
+
pawnSource('\tmemtostr(aData, mem, 0, dim);');
|
|
225
224
|
pawnSource('\treturn dim;');
|
|
226
225
|
pawnSource('}');
|
|
227
226
|
}
|