Merge pull request #3199 from unknownbrackets/ui-tweaks

Minor improvements to new UI
This commit is contained in:
Henrik Rydgård 2013-08-16 23:53:49 -07:00
commit 810b1112ed
3 changed files with 10 additions and 5 deletions

View File

@ -95,17 +95,19 @@ void Core_WaitInactive(int milliseconds)
void UpdateScreenScale() {
dp_xres = PSP_CoreParameter().pixelWidth;
dp_yres = PSP_CoreParameter().pixelHeight;
pixel_xres = PSP_CoreParameter().pixelWidth;
pixel_yres = PSP_CoreParameter().pixelHeight;
g_dpi = 72;
g_dpi_scale = 1.0f;
#ifdef _WIN32
if (g_Config.iWindowZoom == 1)
{
dp_xres *= 2;
dp_yres *= 2;
g_dpi_scale = 2.0f;
}
else
#endif
pixel_xres = PSP_CoreParameter().pixelWidth;
pixel_yres = PSP_CoreParameter().pixelHeight;
g_dpi = 72;
g_dpi_scale = 1.0f;
pixel_in_dps = (float)pixel_xres / dp_xres;
}

View File

@ -382,7 +382,7 @@ void GameBrowser::Refresh() {
b->OnHoldClick.Handle(this, &GameBrowser::GameButtonHoldClick);
}
if (!lastText_.empty()) {
if (!lastText_.empty() && gameButtons.empty()) {
Add(new Spacer());
Add(new Choice(lastText_, new UI::LinearLayoutParams(UI::WRAP_CONTENT, UI::WRAP_CONTENT)))->OnClick.Handle(this, &GameBrowser::LastClick);
}

View File

@ -360,6 +360,9 @@ void NativeInit(int argc, const char *argv[],
logman->SetLogLevel(LogTypes::G3D, LogTypes::LERROR);
INFO_LOG(BOOT, "Logger inited.");
#else
if (g_Config.currentDirectory.empty()) {
g_Config.currentDirectory = File::GetExeDirectory();
}
g_Config.memCardDirectory = "MemStick/";
#endif