mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-09 17:49:01 +00:00
Qt: Make custom dialog for NAND Repair.
This is so that if you have a lot of titles that need repair the dialog can still fit on screen.
This commit is contained in:
parent
32ea725a10
commit
59f3be8c54
5 changed files with 136 additions and 41 deletions
21
Source/Core/DolphinQt/NANDRepairDialog.h
Normal file
21
Source/Core/DolphinQt/NANDRepairDialog.h
Normal file
|
@ -0,0 +1,21 @@
|
|||
// Copyright 2022 Dolphin Emulator Project
|
||||
// SPDX-License-Identifier: GPL-2.0-or-later
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <QDialog>
|
||||
|
||||
class QWidget;
|
||||
|
||||
namespace WiiUtils
|
||||
{
|
||||
struct NANDCheckResult;
|
||||
}
|
||||
|
||||
class NANDRepairDialog final : public QDialog
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
explicit NANDRepairDialog(const WiiUtils::NANDCheckResult& result, QWidget* parent = nullptr);
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue