1
0
mirror of git://projects.qi-hardware.com/gmenu2x.git synced 2024-07-04 20:52:56 +03:00

Corrected capitalization of megahertz.

"Mhz" -> "MHz"
This commit is contained in:
Maarten ter Huurne 2011-09-19 16:33:19 +02:00
parent 8bcd03962f
commit 03ea679a1d
2 changed files with 3 additions and 3 deletions

View File

@ -497,7 +497,7 @@ void GMenu2X::initBG() {
cpuX = volumeX+font->getTextWidth("100")+5;
if (cpu) cpu->blit(bgmain, cpuX, bottomBarIconY);
cpuX += 19;
manualX = cpuX+font->getTextWidth("300Mhz")+5;
manualX = cpuX+font->getTextWidth("300MHz")+5;
delete cpu;
int serviceX = resX-38;
@ -1847,7 +1847,7 @@ void GMenu2X::scanner() {
#else
if (confInt["menuClock"]<336) {
setClock(336);
scanbg.write(font,tr["Raising cpu clock to 336Mhz"],5,lineY);
scanbg.write(font,tr["Raising cpu clock to 336MHz"],5,lineY);
scanbg.blit(s,0,0);
s->flip();
lineY += 26;

View File

@ -147,7 +147,7 @@ const string &LinkApp::clockStr(int maxClock) {
void LinkApp::setClock(int mhz) {
stringstream ss;
sclock = "";
ss << mhz << "Mhz";
ss << mhz << "MHz";
ss >> sclock;
edited = true;