mirror of
git://projects.qi-hardware.com/gmenu2x.git
synced 2024-11-26 10:04:05 +02:00
Corrected capitalization of megahertz.
"Mhz" -> "MHz"
This commit is contained in:
parent
8bcd03962f
commit
03ea679a1d
@ -497,7 +497,7 @@ void GMenu2X::initBG() {
|
|||||||
cpuX = volumeX+font->getTextWidth("100")+5;
|
cpuX = volumeX+font->getTextWidth("100")+5;
|
||||||
if (cpu) cpu->blit(bgmain, cpuX, bottomBarIconY);
|
if (cpu) cpu->blit(bgmain, cpuX, bottomBarIconY);
|
||||||
cpuX += 19;
|
cpuX += 19;
|
||||||
manualX = cpuX+font->getTextWidth("300Mhz")+5;
|
manualX = cpuX+font->getTextWidth("300MHz")+5;
|
||||||
delete cpu;
|
delete cpu;
|
||||||
|
|
||||||
int serviceX = resX-38;
|
int serviceX = resX-38;
|
||||||
@ -1847,7 +1847,7 @@ void GMenu2X::scanner() {
|
|||||||
#else
|
#else
|
||||||
if (confInt["menuClock"]<336) {
|
if (confInt["menuClock"]<336) {
|
||||||
setClock(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);
|
scanbg.blit(s,0,0);
|
||||||
s->flip();
|
s->flip();
|
||||||
lineY += 26;
|
lineY += 26;
|
||||||
|
@ -147,7 +147,7 @@ const string &LinkApp::clockStr(int maxClock) {
|
|||||||
void LinkApp::setClock(int mhz) {
|
void LinkApp::setClock(int mhz) {
|
||||||
stringstream ss;
|
stringstream ss;
|
||||||
sclock = "";
|
sclock = "";
|
||||||
ss << mhz << "Mhz";
|
ss << mhz << "MHz";
|
||||||
ss >> sclock;
|
ss >> sclock;
|
||||||
|
|
||||||
edited = true;
|
edited = true;
|
||||||
|
Loading…
Reference in New Issue
Block a user