mirror of
https://github.com/melonDS-emu/melonDS.git
synced 2025-07-27 00:00:07 -06:00
Fix building on i686 Linux
I doubt anyone actually cares about support for it but hey may as well?
This commit is contained in:
@ -1103,7 +1103,7 @@ bool EmuInstance::updateConsole(UpdateConsoleNDSArgs&& _ndsargs, UpdateConsoleGB
|
||||
};
|
||||
auto jitargs = jitopt.GetBool("Enable") ? std::make_optional(_jitargs) : std::nullopt;
|
||||
#else
|
||||
optional<JITArgs> jitargs = std::nullopt;
|
||||
std::optional<JITArgs> jitargs = std::nullopt;
|
||||
#endif
|
||||
|
||||
#ifdef GDBSTUB_ENABLED
|
||||
|
Reference in New Issue
Block a user