diff options
| author | 2024-10-27 15:50:21 -0400 | |
|---|---|---|
| committer | 2024-10-27 15:50:21 -0400 | |
| commit | 72eb0c6381f9406a4e45d23f65373d4936770433 (patch) | |
| tree | 13e1303372f858a69bfa5324f0aa9d17428fc43a /src/cache | |
| parent | 831f260ba2f6bc89f0451f6cc628bd131913a363 (diff) | |
| download | camu-72eb0c6381f9406a4e45d23f65373d4936770433.tar.gz camu-72eb0c6381f9406a4e45d23f65373d4936770433.tar.bz2 camu-72eb0c6381f9406a4e45d23f65373d4936770433.zip | |
More synced list, another vcr fix
Signed-off-by: Andrew Opalach <andrew@akon.city>
Diffstat (limited to 'src/cache')
| -rw-r--r-- | src/cache/handle.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/cache/handle.c b/src/cache/handle.c index 5bc868c..206738e 100644 --- a/src/cache/handle.c +++ b/src/cache/handle.c @@ -61,7 +61,6 @@ off_t cch_handle_seek(struct cch_handle *handle, off_t offset, s32 whence) } if (filesize <= 0) return -1; if (whence == CAMU_SEEK_SIZE) { - al_log_debug("cache_handle", "seek_size"); return filesize; } switch (whence) { @@ -70,19 +69,16 @@ off_t cch_handle_seek(struct cch_handle *handle, off_t offset, s32 whence) return -1; } handle->pointer = offset; - al_log_debug("cache_handle", "seek_set %li", offset); break; case SEEK_CUR: if (handle->pointer + offset >= filesize || handle->pointer + offset < 0) { return -1; } handle->pointer += offset; - al_log_debug("cache_handle", "seek_cur %li", offset); break; case SEEK_END: handle->prev_pointer = handle->pointer; handle->pointer = filesize + offset; - al_log_debug("cache_handle", "seek_end %li", offset); break; default: return -1; |