fixed compilation for VC6
svn-id: r6699
This commit is contained in:
parent
c349bf123c
commit
9921273f18
2 changed files with 2 additions and 2 deletions
|
@ -30,7 +30,7 @@
|
|||
#define no_of_files_cd 5200
|
||||
#define max_files_in_list 60
|
||||
|
||||
uint32 UnpackM1(void *, void *, uint16);
|
||||
int UnpackM1(void *, void *, uint16);
|
||||
|
||||
const char *data_file_name = "sky.dsk";
|
||||
const char *dinner_file_name = "sky.dnr";
|
||||
|
|
|
@ -131,7 +131,7 @@ uint16 input_bits(uint8 amount)
|
|||
remBits = ROR((uint16)(((1 << amount) - 1) & newBitBuffh), amount);
|
||||
bit_buffh = newBitBuffh >> amount;
|
||||
bit_buffl = (newBitBuffl >> amount) | remBits;
|
||||
bit_count = newBitCount;
|
||||
bit_count = (uint8)newBitCount;
|
||||
|
||||
return returnVal;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue