Remove debugging

Additionally increased the maximum size of the directory path to display
by a whopping 3 characters.

Signed-off-by: Mahyar Koshkouei <deltabeard@users.noreply.github.com>
This commit is contained in:
Mahyar Koshkouei
2017-01-12 12:11:38 +00:00
parent 261bafd41d
commit 4b8ca4ab6f
4 changed files with 3 additions and 12 deletions

View File

@@ -4,7 +4,7 @@
#define CHANNEL 0x08
/* Adds extra debugging text */
#define DEBUG
//#define DEBUG
/* Prints more error information */
#define err_print(err) \

View File

@@ -215,7 +215,6 @@ out:
gfxExit();
sdmcExit();
puts("Return");
return 0;
err:
@@ -254,7 +253,7 @@ int listDir(int from, int max, int select)
if(wd == NULL)
goto err;
printf("Dir: %.30s\n", wd);
printf("Dir: %.33s\n", wd);
if((dp = opendir(wd)) == NULL)
goto err;

View File

@@ -19,8 +19,6 @@ int playFile(const char* file)
bool lastbuf = false;
int ret;
printf("Here: %d\n", __LINE__);
switch(getFileType(file))
{
case FILE_TYPE_WAV:
@@ -50,19 +48,15 @@ int playFile(const char* file)
goto out;
}
printf("Here: %d\n", __LINE__);
if((ret = (*decoder.init)(file)) != 0)
{
printf("Error initialising decoder: %d\n", ret);
goto out;
}
printf("Here: %d\n", __LINE__);
buffer1 = linearAlloc(decoder.buffSize * sizeof(int16_t));
buffer2 = linearAlloc(decoder.buffSize * sizeof(int16_t));
printf("Here: %d\n", __LINE__);
#ifdef DEBUG
printf("\nRate: %lu\tChan: %d\n", (*decoder.rate)(), (*decoder.channels)());
#endif
@@ -75,13 +69,11 @@ int playFile(const char* file)
ndspChnSetFormat(CHANNEL,
(*decoder.channels)() == 2 ? NDSP_FORMAT_STEREO_PCM16 :
NDSP_FORMAT_MONO_PCM16);
printf("Here: %d\n", __LINE__);
memset(waveBuf, 0, sizeof(waveBuf));
waveBuf[0].nsamples = (*decoder.decode)(&buffer1[0]) / (*decoder.channels)();
waveBuf[0].data_vaddr = &buffer1[0];
ndspChnWaveBufAdd(CHANNEL, &waveBuf[0]);
printf("Here: %d\n", __LINE__);
waveBuf[1].nsamples = (*decoder.decode)(&buffer2[0]) / (*decoder.channels)();
waveBuf[1].data_vaddr = &buffer2[0];