some more fixes for ci
This commit is contained in:
parent
c8063743ee
commit
3f900b41b5
|
@ -1,7 +1,5 @@
|
||||||
# This workflow uses actions that are not certified by GitHub.
|
# SPDX-FileCopyrightText: 2024 shadPS4 Emulator Project
|
||||||
# They are provided by a third-party and are governed by
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
# separate terms of service, privacy policy, and support
|
|
||||||
# documentation.
|
|
||||||
|
|
||||||
name: Windows-Qt
|
name: Windows-Qt
|
||||||
|
|
||||||
|
|
|
@ -1,3 +1,8 @@
|
||||||
|
<!--
|
||||||
|
SPDX-FileCopyrightText: 2024 shadPS4 Emulator Project
|
||||||
|
SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
|
-->
|
||||||
|
|
||||||
# Style guidelines
|
# Style guidelines
|
||||||
|
|
||||||
## General Rules
|
## General Rules
|
||||||
|
|
|
@ -280,7 +280,7 @@ void MainWindow::InstallPkg() {
|
||||||
|
|
||||||
void MainWindow::InstallDragDropPkg(std::string file, int pkgNum, int nPkg) {
|
void MainWindow::InstallDragDropPkg(std::string file, int pkgNum, int nPkg) {
|
||||||
|
|
||||||
if (DetectFileType(file) == FILETYPE_PKG) {
|
if (DetectFileType(file) == FileTypes::Pkg) {
|
||||||
PKG pkg;
|
PKG pkg;
|
||||||
pkg.Open(file);
|
pkg.Open(file);
|
||||||
std::string failreason;
|
std::string failreason;
|
||||||
|
|
Loading…
Reference in New Issue