Skip to content

Commit

Permalink
fix aarch64 build
Browse files Browse the repository at this point in the history
  • Loading branch information
RSDuck committed Mar 12, 2024
1 parent 18d1df6 commit 5fdd285
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/frontend/qt_sdl/Platform.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ std::string InstanceFileSuffix()

static QIODevice::OpenMode GetQMode(FileMode mode)
{
QIODevice::OpenMode qmode = 0;
QIODevice::OpenMode qmode = QIODevice::OpenModeFlag::NotOpen;
if (mode & FileMode::Read)
qmode |= QIODevice::OpenModeFlag::ReadOnly;
if (mode & FileMode::Write)
Expand Down

0 comments on commit 5fdd285

Please sign in to comment.