forked from len0rd/rockbox
Use correct types, which kills some AMD64 sim warnings.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@9191 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
a7b5a2ce73
commit
738a584a5c
1 changed files with 2 additions and 2 deletions
|
|
@ -33,7 +33,7 @@ static bool pcm_playing;
|
||||||
static bool pcm_paused;
|
static bool pcm_paused;
|
||||||
|
|
||||||
static Uint8* pcm_data;
|
static Uint8* pcm_data;
|
||||||
static Uint32 pcm_data_size;
|
static size_t pcm_data_size;
|
||||||
|
|
||||||
extern bool debug_audio;
|
extern bool debug_audio;
|
||||||
|
|
||||||
|
|
@ -97,7 +97,7 @@ void pcm_play_stop(void)
|
||||||
|
|
||||||
void pcm_play_pause(bool play)
|
void pcm_play_pause(bool play)
|
||||||
{
|
{
|
||||||
Uint32 next_size;
|
size_t next_size;
|
||||||
Uint8 *next_start;
|
Uint8 *next_start;
|
||||||
|
|
||||||
if (!pcm_playing) {
|
if (!pcm_playing) {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue