From 3f900b41b5ed8e285da4127cee056c8788a9dbbc Mon Sep 17 00:00:00 2001 From: georgemoralis Date: Thu, 29 Feb 2024 16:44:34 +0200 Subject: [PATCH] some more fixes for ci --- .github/workflows/windows-qt.yml | 6 ++---- CONTRIBUTING.md | 5 +++++ src/qt_gui/main_window.cpp | 2 +- 3 files changed, 8 insertions(+), 5 deletions(-) diff --git a/.github/workflows/windows-qt.yml b/.github/workflows/windows-qt.yml index c60a7e42..aae36b62 100644 --- a/.github/workflows/windows-qt.yml +++ b/.github/workflows/windows-qt.yml @@ -1,7 +1,5 @@ -# This workflow uses actions that are not certified by GitHub. -# They are provided by a third-party and are governed by -# separate terms of service, privacy policy, and support -# documentation. +# SPDX-FileCopyrightText: 2024 shadPS4 Emulator Project +# SPDX-License-Identifier: GPL-2.0-or-later name: Windows-Qt diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index a8ad8dfd..242278fc 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -1,3 +1,8 @@ + + # Style guidelines ## General Rules diff --git a/src/qt_gui/main_window.cpp b/src/qt_gui/main_window.cpp index c21ad697..f6394f85 100644 --- a/src/qt_gui/main_window.cpp +++ b/src/qt_gui/main_window.cpp @@ -280,7 +280,7 @@ void MainWindow::InstallPkg() { void MainWindow::InstallDragDropPkg(std::string file, int pkgNum, int nPkg) { - if (DetectFileType(file) == FILETYPE_PKG) { + if (DetectFileType(file) == FileTypes::Pkg) { PKG pkg; pkg.Open(file); std::string failreason;