mirror of
https://github.com/cemu-project/Cemu.git
synced 2024-11-29 12:34:17 +01:00
Merge branch 'cemu-project:main' into metal
This commit is contained in:
commit
25a1d7ef6c
Binary file not shown.
Binary file not shown.
1
dist/linux/appimage.sh
vendored
1
dist/linux/appimage.sh
vendored
@ -50,7 +50,6 @@ fi
|
|||||||
echo "Cemu Version Cemu-${GITVERSION}"
|
echo "Cemu Version Cemu-${GITVERSION}"
|
||||||
|
|
||||||
rm AppDir/usr/lib/libwayland-client.so.0
|
rm AppDir/usr/lib/libwayland-client.so.0
|
||||||
cp /lib/x86_64-linux-gnu/libstdc++.so.6 AppDir/usr/lib/
|
|
||||||
echo -e "export LC_ALL=C\nexport FONTCONFIG_PATH=/etc/fonts" >> AppDir/apprun-hooks/linuxdeploy-plugin-gtk.sh
|
echo -e "export LC_ALL=C\nexport FONTCONFIG_PATH=/etc/fonts" >> AppDir/apprun-hooks/linuxdeploy-plugin-gtk.sh
|
||||||
VERSION="${GITVERSION}" ./mkappimage.AppImage --appimage-extract-and-run "${GITHUB_WORKSPACE}"/AppDir
|
VERSION="${GITVERSION}" ./mkappimage.AppImage --appimage-extract-and-run "${GITHUB_WORKSPACE}"/AppDir
|
||||||
|
|
||||||
|
@ -1210,6 +1210,14 @@ void nsysnetExport_select(PPCInterpreter_t* hCPU)
|
|||||||
|
|
||||||
timeval tv = { 0 };
|
timeval tv = { 0 };
|
||||||
|
|
||||||
|
if (timeOut == NULL)
|
||||||
|
{
|
||||||
|
// return immediately
|
||||||
|
cemuLog_log(LogType::Socket, "select returned immediately because of null timeout");
|
||||||
|
osLib_returnFromFunction(hCPU, 0);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
uint64 msTimeout = (_swapEndianU32(timeOut->tv_usec) / 1000) + (_swapEndianU32(timeOut->tv_sec) * 1000);
|
uint64 msTimeout = (_swapEndianU32(timeOut->tv_usec) / 1000) + (_swapEndianU32(timeOut->tv_sec) * 1000);
|
||||||
uint32 startTime = GetTickCount();
|
uint32 startTime = GetTickCount();
|
||||||
while (true)
|
while (true)
|
||||||
|
@ -934,6 +934,7 @@ void GeneralSettings2::StoreConfig()
|
|||||||
config.fullscreen_menubar = m_fullscreen_menubar->IsChecked();
|
config.fullscreen_menubar = m_fullscreen_menubar->IsChecked();
|
||||||
config.check_update = m_auto_update->IsChecked();
|
config.check_update = m_auto_update->IsChecked();
|
||||||
config.save_screenshot = m_save_screenshot->IsChecked();
|
config.save_screenshot = m_save_screenshot->IsChecked();
|
||||||
|
config.receive_untested_updates = m_receive_untested_releases->IsChecked();
|
||||||
#if BOOST_OS_LINUX && defined(ENABLE_FERAL_GAMEMODE)
|
#if BOOST_OS_LINUX && defined(ENABLE_FERAL_GAMEMODE)
|
||||||
config.feral_gamemode = m_feral_gamemode->IsChecked();
|
config.feral_gamemode = m_feral_gamemode->IsChecked();
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
Reference in New Issue
Block a user