1
0
mirror of git://projects.qi-hardware.com/gmenu2x.git synced 2024-07-04 21:05:27 +03:00

Removed one last occurrence of hardcoded minimum CPU frequency.

Well, I hope it was really the last one now.
This commit is contained in:
Maarten ter Huurne 2011-09-19 16:26:42 +02:00
parent a014a331f4
commit 8d04cf1064

View File

@ -2080,7 +2080,7 @@ void GMenu2X::applyDefaultTimings() {
void GMenu2X::setClock(unsigned mhz) {
mhz = constrain(mhz, 30, confInt["maxClock"]);
mhz = constrain(mhz, cpuFreqMin, confInt["maxClock"]);
#if defined(PLATFORM_DINGUX) || defined(PLATFORM_NANONOTE)
jz_cpuspeed(mhz);
#endif