From 2d6533536bd73730fdfb3615216c779115dd12fd Mon Sep 17 00:00:00 2001 From: Eric MacDonald Date: Wed, 8 Sep 2021 22:12:28 -0400 Subject: [PATCH] Better words --- zefie_wtvp_minisrv/WTVLzpf.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/zefie_wtvp_minisrv/WTVLzpf.js b/zefie_wtvp_minisrv/WTVLzpf.js index d8645168..85bff8a5 100644 --- a/zefie_wtvp_minisrv/WTVLzpf.js +++ b/zefie_wtvp_minisrv/WTVLzpf.js @@ -308,7 +308,7 @@ class WTVLzpf { * @returns {undefined} */ constructor() { - this.clear(); + this.reset(); } /** @@ -316,7 +316,7 @@ class WTVLzpf { * * @returns {undefined} */ - clear() { + reset() { this.current_bit_length = 0; this.current_bits = 0; this.ring_bufer_index = 0xFFFF; @@ -368,7 +368,7 @@ class WTVLzpf { * @returns {undefined} Lzpf compression data */ Begin() { - this.clear(); + this.reset(); } /**