Skip to content

Commit

Permalink
feat(windows): fix compile dammit
Browse files Browse the repository at this point in the history
  • Loading branch information
Mte90 committed Mar 3, 2023
1 parent 38ae21b commit 0321584
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion class/cheatcodes.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ Cheatcodes::titleGeneration(QString title)
char* menutitle;

#if defined(Q_OS_WIN)
QStringList lines = title.toUpper().split("/", Qstring::SkipEmptyParts);
QStringList lines = title.toUpper().split("/", QString::SkipEmptyParts);
#else
QStringList lines = title.toUpper().split("/", Qt::SkipEmptyParts);
#endif
Expand Down

0 comments on commit 0321584

Please sign in to comment.