From 72eb0c6381f9406a4e45d23f65373d4936770433 Mon Sep 17 00:00:00 2001 From: Andrew Opalach Date: Sun, 27 Oct 2024 15:50:21 -0400 Subject: More synced list, another vcr fix Signed-off-by: Andrew Opalach --- src/cache/handle.c | 4 ---- 1 file changed, 4 deletions(-) (limited to 'src/cache') 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; -- cgit v1.2.3-101-g0448