mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
Move declarations closer to usage.
This commit is contained in:
@@ -169,12 +169,12 @@ public class TeleDiskLzh
|
||||
/// <returns>Number of decompressed bytes</returns>
|
||||
public int Decode(out byte[] buf, int len) /* Decoding/Uncompressing */
|
||||
{
|
||||
short c;
|
||||
buf = new byte[len];
|
||||
int count; // was an unsigned long, seems unnecessary
|
||||
|
||||
for(count = 0; count < len;)
|
||||
{
|
||||
short c;
|
||||
if(_tdctl.Bufcnt == 0)
|
||||
{
|
||||
if((c = DecodeChar()) < 0)
|
||||
|
||||
Reference in New Issue
Block a user