From 0d1cb8c87806654f432a9c4f5b9479eef7745299 Mon Sep 17 00:00:00 2001 From: Nekotekina Date: Tue, 14 Nov 2017 17:57:56 +0300 Subject: [PATCH] Fix cellMsgDialog --- rpcs3/Emu/Cell/Modules/cellMsgDialog.cpp | 2 +- rpcs3/rpcs3qt/msg_dialog_frame.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/rpcs3/Emu/Cell/Modules/cellMsgDialog.cpp b/rpcs3/Emu/Cell/Modules/cellMsgDialog.cpp index 87787b4ce8..c28d259d1c 100644 --- a/rpcs3/Emu/Cell/Modules/cellMsgDialog.cpp +++ b/rpcs3/Emu/Cell/Modules/cellMsgDialog.cpp @@ -23,7 +23,7 @@ s32 cellMsgDialogOpen2(u32 type, vm::cptr msgString, vm::ptrsetWindowTitle(type.se_normal ? "Normal dialog" : "Error dialog"); m_dialog->setWindowFlags(m_dialog->windowFlags() & ~Qt::WindowContextHelpButtonHint); - m_dialog->setWindowOpacity(type.bg_invisible ? 1.0 : 192.0 / 255.0); + m_dialog->setWindowOpacity(type.bg_invisible ? 1. : 0.75); m_text = new QLabel(qstr(msg)); m_text->setAlignment(Qt::AlignCenter);