dolphin/Source/Core/DolphinQt/NANDRepairDialog.h
Admiral H. Curtiss 59f3be8c54
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.
2022-08-28 03:11:17 +02:00

21 lines
355 B
C++

// 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);
};