summaryrefslogtreecommitdiff
path: root/apps/codecs/dumb/src/it/itread.c
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2005-05-07 22:10:35 +0000
committerDaniel Stenberg <daniel@haxx.se>2005-05-07 22:10:35 +0000
commit4cc0b97609a9c94abef6b4422c2c87c599776f44 (patch)
tree15be2077d74785f421845c5921a64053c8ec4ba8 /apps/codecs/dumb/src/it/itread.c
parent2505e7bf047b65d5c8b714eb3528dc1c1e178dfd (diff)
downloadrockbox-4cc0b97609a9c94abef6b4422c2c87c599776f44.tar.gz
rockbox-4cc0b97609a9c94abef6b4422c2c87c599776f44.zip
Hush up warnings by defining away functions/macros. This should be fixed if
actual functionality is wanted (by including the proper headers and making sure rockbox provides these functions). pow(), floor(), log() and exp() just feel veeeery floatish... git-svn-id: svn://svn.rockbox.org/rockbox/trunk@6417 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/codecs/dumb/src/it/itread.c')
-rw-r--r--apps/codecs/dumb/src/it/itread.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/codecs/dumb/src/it/itread.c b/apps/codecs/dumb/src/it/itread.c
index 7384b30a92..8b4a322ee1 100644
--- a/apps/codecs/dumb/src/it/itread.c
+++ b/apps/codecs/dumb/src/it/itread.c
@@ -555,8 +555,8 @@ static long it_read_sample_data(int cmwt, IT_SAMPLE *sample, unsigned char conve
555 /** WARNING - unresolved business here... test with ModPlug? */ 555 /** WARNING - unresolved business here... test with ModPlug? */
556 556
557 if (sample->flags & IT_SAMPLE_STEREO) 557 if (sample->flags & IT_SAMPLE_STEREO)
558 exit(37); 558 return -1;
559 559
560/* 560/*
561//#ifndef STEREO_SAMPLES_COUNT_AS_TWO 561//#ifndef STEREO_SAMPLES_COUNT_AS_TWO
562 ASSERT(!(sample->flags & IT_SAMPLE_STEREO)); 562 ASSERT(!(sample->flags & IT_SAMPLE_STEREO));