summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/machine/315-5881_crypt.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/machine/315-5881_crypt.h')
-rw-r--r--src/mame/machine/315-5881_crypt.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mame/machine/315-5881_crypt.h b/src/mame/machine/315-5881_crypt.h
index 6b73ffd0700..46862165342 100644
--- a/src/mame/machine/315-5881_crypt.h
+++ b/src/mame/machine/315-5881_crypt.h
@@ -40,7 +40,7 @@ protected:
private:
enum {
- BUFFER_SIZE = 32768, LINE_SIZE = 512,
+ BUFFER_SIZE = 32768*8, LINE_SIZE = 512*8,
FLAG_COMPRESSED = 0x10000, FLAG_LINE_SIZE_512 = 0x20000
};
@@ -54,6 +54,8 @@ private:
bool enc_ready;
int buffer_pos, line_buffer_pos, line_buffer_size, buffer_bit;
+ int block_size;
+ int block_pos;
struct sbox {
UINT8 table[64];