summaryrefslogtreecommitdiff
path: root/cdumb.c
diff options
context:
space:
mode:
authorGravatar waker <wakeroid@gmail.com>2009-08-16 20:07:08 +0200
committerGravatar waker <wakeroid@gmail.com>2009-08-16 20:07:08 +0200
commit54c39020a5a42d776766e0acc506c27b511efa1e (patch)
treeb84656d9b60b462e36beed40551d68705f8410d4 /cdumb.c
parent41e7d953fc641c3285f09b07f2210c2895003040 (diff)
fixed dumb position reporting
Diffstat (limited to 'cdumb.c')
-rw-r--r--cdumb.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cdumb.c b/cdumb.c
index 13def61d..5e643fe9 100644
--- a/cdumb.c
+++ b/cdumb.c
@@ -144,7 +144,7 @@ cdumb_read (char *bytes, int size) {
int length = size / 4;
long ret;
ret = duh_render (renderer, 16, 0, 1, 65536.f / cdumb.info.samplesPerSecond, length, bytes);
- cdumb.info.position += ret / (float)cdumb.info.samplesPerSecond;
+ //cdumb.info.position += ret / (float)cdumb.info.samplesPerSecond;
return ret*4;
}