aboutsummaryrefslogtreecommitdiff
path: root/source/sdd1emu.h
diff options
context:
space:
mode:
authorTwinaphex2017-01-29 06:00:06 +0100
committerGitHub2017-01-29 06:00:06 +0100
commitb9ad67f2d3f5bc1f7ebaad2eeb225d669aa7f58b (patch)
treeadce7b06d1acc25f52c6e10616451bba02f9f7a5 /source/sdd1emu.h
parent813fc89d37d1d8c8d2fa090a28f74aa0fdcea5df (diff)
parent0e59b999fa976de2d00490f552a1ff0a27d40f63 (diff)
downloadsnes9x2005-b9ad67f2d3f5bc1f7ebaad2eeb225d669aa7f58b.tar.gz
snes9x2005-b9ad67f2d3f5bc1f7ebaad2eeb225d669aa7f58b.tar.bz2
snes9x2005-b9ad67f2d3f5bc1f7ebaad2eeb225d669aa7f58b.zip
Merge pull request #30 from jamsilva/master
Converted most types to stdint-style (fixing a few in the process).
Diffstat (limited to 'source/sdd1emu.h')
-rw-r--r--source/sdd1emu.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/sdd1emu.h b/source/sdd1emu.h
index a968f7d..07bdeb6 100644
--- a/source/sdd1emu.h
+++ b/source/sdd1emu.h
@@ -3,6 +3,6 @@
#ifndef SDD1EMU_H
#define SDD1EMU_H
-void SDD1_decompress(uint8_t* out, uint8_t* in, int output_length);
+void SDD1_decompress(uint8_t* out, uint8_t* in, int32_t output_length);
#endif