lowercasing filenames, part1; makefile adjustments
[picodrive.git] / Pico / cd / pcm.c
index 6ac493a..9217d37 100644 (file)
@@ -2,7 +2,7 @@
 // Based on Gens code by Stéphane Dallongeville
 // (c) Copyright 2007, Grazvydas "notaz" Ignotas
 
-#include "../PicoInt.h"
+#include "../pico_int.h"
 #include "pcm.h"
 
 static unsigned int g_rate = 0; // 18.14 fixed point
@@ -56,7 +56,7 @@ PICO_INTERNAL void pcm_set_rate(int rate)
        step *= 256*256/4;
        g_rate = (unsigned int) step;
        if (step - (float) g_rate >= 0.5) g_rate++;
-       printf("g_rate: %f %08x\n", (double)step, g_rate);
+       elprintf(EL_STATUS, "g_rate: %f %08x\n", (double)step, g_rate);
 }