summaryrefslogtreecommitdiff
path: root/apps/plugins/metronome.c
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2006-03-03 08:14:44 +0000
committerDaniel Stenberg <daniel@haxx.se>2006-03-03 08:14:44 +0000
commit220fafdd72eab05eb49cf6811d15d6618a168910 (patch)
treec90ef2fe3e9bb932197ac3ff5b305dd39a66204e /apps/plugins/metronome.c
parente248eac20fc75566605aee705c130e0fa456aced (diff)
downloadrockbox-220fafdd72eab05eb49cf6811d15d6618a168910.tar.gz
rockbox-220fafdd72eab05eb49cf6811d15d6618a168910.zip
Code Police raid. Mostly changed // comments and indented to Rockbox style.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@8894 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/metronome.c')
-rw-r--r--apps/plugins/metronome.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/plugins/metronome.c b/apps/plugins/metronome.c
index c7200300f3..8e185b58a9 100644
--- a/apps/plugins/metronome.c
+++ b/apps/plugins/metronome.c
@@ -746,7 +746,7 @@ void play_tock(void) {
746 746
747void calc_period(void) 747void calc_period(void)
748{ 748{
749 period = 61440/bpm-1; // (60*1024)/bpm; 749 period = 61440/bpm-1; /* (60*1024)/bpm; */
750} 750}
751 751
752 752
@@ -904,7 +904,7 @@ enum plugin_status plugin_start(struct plugin_api* api, void* parameter){
904 rb = api; 904 rb = api;
905 905
906 if (MET_IS_PLAYING) 906 if (MET_IS_PLAYING)
907 MET_PLAY_STOP; // stop audio IS 907 MET_PLAY_STOP; /* stop audio IS */
908 908
909#if CONFIG_CODEC != SWCODEC 909#if CONFIG_CODEC != SWCODEC
910 rb->bitswap(sound, sizeof(sound)); 910 rb->bitswap(sound, sizeof(sound));