Skip to content

Commit 6a09071

Browse files
committed
Update file(s): 2025-04-01
1 parent 386a8c4 commit 6a09071

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

db/read

+5-5
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@
55
// and get rid of the functions themselves
66
/* beautify ignore:start */
77

8-
const _BE = true, _LE = false; //endianness for read_int16+
8+
var _BE = true, _LE = false; //endianness for read_int16+
99
//little-endian = reversed notation (Intel, ZX Spectrum),
1010
//big-endian = direct notation (TCP/IP, Motorola, Amiga)
1111
//For the BitReader Object, BE is MSB and LE is LSB (intuitively)
12-
const CS_ALL = true, CS_BEST = false; //charStat needall
13-
const TOEOF = -1; //use for the size parameter in findSignature
12+
var CS_ALL = true, CS_BEST = false; //charStat needall
13+
var TOEOF = -1; //use for the size parameter in findSignature
1414

1515
// ---------- START OF PRE-v3.06 CODE --------------------
1616

@@ -127,7 +127,7 @@ const CPSpeccy = ['©', //too SPECIAL with all the tokens-for-characters, gotta
127127
const Chars0to1F = "・☺☻♥♦♣♠•◘○◙♂♀♪♫☼▶◀↕‼¶§▬↨↑↓→←∟↔▲▼"; //#0 is a small dot from Japanese
128128
const Chars0to1FLF = "・☺☻♥♦♣♠•◘○\x0A♂♀♪♫☼▶◀↕‼¶§▬↨↑↓→←∟↔▲▼";
129129
const Chars0to1FCRLF = "・☺☻♥♦♣♠•◘○\x0A♂♀\x0D♫☼▶◀↕‼¶§▬↨↑↓→←∟↔▲▼";
130-
const Chars0to1FSpeccy = "\0\1\2\3\4\5,📝⬅➡⬇⬆⌫\x0A\x0F\x10\x11\x12\x13\x14\x15\x16\x17\x18\x19\x1A\x1B\x1C\x1D\x1E\x1F"; //not mixing...
130+
const Chars0to1FSpeccy = "\x00\x01\x02\x03\x04\x05\x06\x07\x08\x09\x0A\x0B\x0C\x0D\x0E\x0F\x10\x11\x12\x13\x14\x15\x16\x17\x18\x19\x1A\x1B\x1C\x1D\x1E\x1F"; //not mixing...
131131
const Chars0to1FATASCII = "♥├◨┘┤┐/╲◢▗◣▝▘ ̄▂▖♣┌─┼•▄▎┬┴▌└␛↑↓←→";
132132
const Chars0to1FATASCII2 = "áùÑÉçôòì£ïüäöúóöÜâûîéèñêȧàȦ␛↑↓←→";
133133
const Chars0to1FATASCII_PL = "ŹąźćŚėöÖ£üߣłŃÓ√ĘśäÜĆĄŻÄż␛↑↓←→";
@@ -691,4 +691,4 @@ function _logText(buf) { //same but as text put through CP866, or all file with
691691
}
692692

693693
function _l2r(name,pos,issue) { _setResult('debug',name,'@'+Hex(pos),issue); }
694-
/* beautify ignore:end */
694+
/* beautify ignore:end */

0 commit comments

Comments
 (0)