Attempt to fix flatpak CI

This commit is contained in:
Hamish Milne
2020-03-28 15:10:35 +00:00
parent 03379b2072
commit 025960bcdd
4 changed files with 4 additions and 6 deletions

View File

@@ -43,7 +43,7 @@ cat > /tmp/org.citra.$REPO_NAME.json <<EOF
{
"app-id": "org.citra.$REPO_NAME",
"runtime": "org.kde.Platform",
"runtime-version": "5.12",
"runtime-version": "5.13",
"sdk": "org.kde.Sdk",
"command": "citra-qt",
"rename-desktop-file": "citra.desktop",

View File

@@ -17,7 +17,6 @@
#elif HAVE_FDK
#include "audio_core/hle/fdk_decoder.h"
#endif
#include <iostream>
#include "audio_core/hle/common.h"
#include "audio_core/hle/decoder.h"
#include "audio_core/hle/hle.h"

View File

@@ -33,9 +33,8 @@ void Process::serialize(Archive& ar, const unsigned int file_version) {
ar& resource_limit;
ar& svc_access_mask;
ar& handle_table_size;
ar&(boost::container::vector<
AddressMapping, boost::container::dtl::static_storage_allocator<AddressMapping, 8>>&)
address_mappings;
ar&(boost::container::vector<AddressMapping, boost::container::dtl::static_storage_allocator<
AddressMapping, 8, 0, true>>&)address_mappings;
ar& flags.raw;
ar& kernel_version;
ar& ideal_processor;