diff options
| author | Anton Oleynikov <len0x@rockbox.org> | 2005-11-19 20:45:32 +0000 |
|---|---|---|
| committer | Anton Oleynikov <len0x@rockbox.org> | 2005-11-19 20:45:32 +0000 |
| commit | 2c836341edfc7336a4792f8085d00bf9c8fd7b47 (patch) | |
| tree | 7d22d24dde92432680cdde163c5968a7be5ece94 /apps/status.c | |
| parent | 5745e4106ce0d8e04bec0962af9701793698cb8d (diff) | |
| download | rockbox-2c836341edfc7336a4792f8085d00bf9c8fd7b47.zip rockbox-2c836341edfc7336a4792f8085d00bf9c8fd7b47.tar.gz rockbox-2c836341edfc7336a4792f8085d00bf9c8fd7b47.tar.bz2 rockbox-2c836341edfc7336a4792f8085d00bf9c8fd7b47.tar.xz | |
new icons for radio status
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@8002 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/status.c')
| -rw-r--r-- | apps/status.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/status.c b/apps/status.c index 6a7c6a4..00f8c5e 100644 --- a/apps/status.c +++ b/apps/status.c @@ -126,10 +126,10 @@ int current_playmode(void) audio_stat = get_radio_status(); if(audio_stat == FMRADIO_PLAYING) - return STATUS_PLAY; + return STATUS_RADIO; if(audio_stat == FMRADIO_PAUSED) - return STATUS_PAUSE; + return STATUS_RADIO_PAUSE; #endif return STATUS_STOP; |