8d65e832f0
Emulators form a class by themselves. So, they should be moved to applications/.
21 lines
797 B
Diff
21 lines
797 B
Diff
--- a/libpcsxcore/cdriso.c
|
|
+++ b/libpcsxcore/cdriso.c
|
|
@@ -1219,7 +1219,7 @@
|
|
return ret;
|
|
}
|
|
|
|
-static int uncompress2(void *out, unsigned long *out_size, void *in, unsigned long in_size)
|
|
+static int uncompress3(void *out, unsigned long *out_size, void *in, unsigned long in_size)
|
|
{
|
|
static z_stream z;
|
|
int ret = 0;
|
|
@@ -1298,7 +1298,7 @@
|
|
if (is_compressed) {
|
|
cdbuffer_size_expect = sizeof(compr_img->buff_raw[0]) << compr_img->block_shift;
|
|
cdbuffer_size = cdbuffer_size_expect;
|
|
- ret = uncompress2(compr_img->buff_raw[0], &cdbuffer_size, compr_img->buff_compressed, size);
|
|
+ ret = uncompress3(compr_img->buff_raw[0], &cdbuffer_size, compr_img->buff_compressed, size);
|
|
if (ret != 0) {
|
|
SysPrintf("uncompress failed with %d for block %d, sector %d\n",
|
|
ret, block, sector);
|