summaryrefslogtreecommitdiff
path: root/apps/talk.c
diff options
context:
space:
mode:
authorMiika Pekkarinen <miipekk@ihme.org>2006-12-05 20:01:48 +0000
committerMiika Pekkarinen <miipekk@ihme.org>2006-12-05 20:01:48 +0000
commitc5d57f0aaec039de4a72a94d103ace64c0553b3d (patch)
treeae2f61a6deb7d65d174d175eef02b5be5c8c0cb6 /apps/talk.c
parent5f15f8f021abc08db88e95371ceda194f5717893 (diff)
Removed the cpu boost tracking debug feature for now because of
different kind of problems. Better implementation can be done later. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@11665 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/talk.c')
-rw-r--r--apps/talk.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/talk.c b/apps/talk.c
index 107cb72e6e..a8805004d2 100644
--- a/apps/talk.c
+++ b/apps/talk.c
@@ -219,7 +219,7 @@ static void load_voicefile(void)
/* Do a bitswap as necessary. */
#if CONFIG_CODEC == SWCODEC
logf("Bitswapping voice file.");
- cpu_boost_id(true, CPUBOOSTID_TALK);
+ cpu_boost(true);
buf = (unsigned char *)(&p_voicefile->index) +
(p_voicefile->id1_max + p_voicefile->id2_max) * sizeof(struct clip_entry);
length = file_size - (buf - (unsigned char *) p_voicefile);
@@ -231,7 +231,7 @@ static void load_voicefile(void)
temp = ((temp >> 2) & 0x33) | ((temp & 0x33) << 2);
buf[i] = ((temp >> 1) & 0x55) | ((temp & 0x55) << 1);
}
- cpu_boost_id(false, CPUBOOSTID_TALK);
+ cpu_boost(false);
#endif