Compare commits

..

3 Commits

Author SHA1 Message Date
21e859ff2b Android #144 2023-11-28 00:57:20 +00:00
b1b0ce1a59 Merge PR 12204 2023-11-28 00:57:20 +00:00
2ef3268944 Merge PR 12074 2023-11-28 00:57:20 +00:00
3 changed files with 4 additions and 4 deletions

View File

@ -1,7 +1,7 @@
| Pull Request | Commit | Title | Author | Merged? |
|----|----|----|----|----|
| [12074](https://github.com/yuzu-emu/yuzu//pull/12074) | [`340548aba`](https://github.com/yuzu-emu/yuzu//pull/12074/files) | Implement Native Code Execution (NCE) | [GPUCode](https://github.com/GPUCode/) | Yes |
| [12204](https://github.com/yuzu-emu/yuzu//pull/12204) | [`7dddf5cb3`](https://github.com/yuzu-emu/yuzu//pull/12204/files) | android: Multi directory UI | [t895](https://github.com/t895/) | Yes |
| [12074](https://github.com/yuzu-emu/yuzu//pull/12074) | [`a76a8fb5f`](https://github.com/yuzu-emu/yuzu//pull/12074/files) | Implement Native Code Execution (NCE) | [GPUCode](https://github.com/GPUCode/) | Yes |
| [12204](https://github.com/yuzu-emu/yuzu//pull/12204) | [`caa83609f`](https://github.com/yuzu-emu/yuzu//pull/12204/files) | android: Multi directory UI | [t895](https://github.com/t895/) | Yes |
End of merge log. You can find the original README.md below the break.

View File

@ -58,8 +58,8 @@ object GameHelper {
gameDirs.removeAt(it - offset)
offset++
}
NativeConfig.setGameDirs(gameDirs.toTypedArray())
}
NativeConfig.setGameDirs(gameDirs.toTypedArray())
// Cache list of games found on disk
val serializedGames = mutableSetOf<String>()

View File

@ -541,7 +541,7 @@ public:
if (write) {
flags |= PROT_WRITE;
}
#ifdef HAS_NCE
#ifdef ARCHITECTURE_arm64
if (execute) {
flags |= PROT_EXEC;
}