From 3f206981d9e973d58e1803dd2b55d3204d98ce05 Mon Sep 17 00:00:00 2001 From: Robbie Date: Fri, 4 Aug 2017 21:31:30 -0500 Subject: [PATCH] Finesse size of goto address. Downgrade image loading failed to warning. --- rpcs3/rpcs3qt/debugger_frame.cpp | 2 +- rpcs3/rpcs3qt/game_list_frame.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/rpcs3/rpcs3qt/debugger_frame.cpp b/rpcs3/rpcs3qt/debugger_frame.cpp index 056aa9603d..a797b9d30c 100644 --- a/rpcs3/rpcs3qt/debugger_frame.cpp +++ b/rpcs3/rpcs3qt/debugger_frame.cpp @@ -348,7 +348,7 @@ void debugger_frame::Show_Val() QLineEdit* p_pc(new QLineEdit(diag)); p_pc->setFont(mono); p_pc->setMaxLength(8); - p_pc->setFixedWidth(75); + p_pc->setFixedWidth(90); QLabel* addr(new QLabel(diag)); addr->setFont(mono); diff --git a/rpcs3/rpcs3qt/game_list_frame.cpp b/rpcs3/rpcs3qt/game_list_frame.cpp index c69f1c4e97..39d35ff74a 100644 --- a/rpcs3/rpcs3qt/game_list_frame.cpp +++ b/rpcs3/rpcs3qt/game_list_frame.cpp @@ -445,7 +445,7 @@ void game_list_frame::Refresh(bool fromDrive) if (game.icon_path.empty() || !img.load(qstr(game.icon_path))) { - LOG_ERROR(GENERAL, "Could not load image from path %s", sstr(QDir(qstr(game.icon_path)).absolutePath())); + LOG_WARNING(GENERAL, "Could not load image from path %s", sstr(QDir(qstr(game.icon_path)).absolutePath())); } bool hasCustomConfig = fs::is_file(fs::get_config_dir() + "data/" + game.serial + "/config.yml");