bunnei
74e9708afb
android: jni: game_info: Fix crash on banner load for missing title.
2020-09-12 00:09:09 -07:00
bunnei
8703051be0
android: jni: config: Fix bug preventing creation of config.ini.
2020-09-12 00:09:09 -07:00
bunnei
2afd0c62db
android: frontend: StartupHandler: Add an intro sequence to pick game dir.
2020-09-12 00:09:09 -07:00
bunnei
54a60a581e
android: frontend: SettingsFragmentPresenter: Default resolution scale to 1X.
...
- Because android phones aren't very fast.
2020-09-12 00:09:09 -07:00
bunnei
722d35ed1a
android: core: Prepare for ARM64 dynarmic support.
2020-09-12 00:09:09 -07:00
bunnei
c8f4941c0f
android: frontend: Settings: Section categories must match INI settings.
2020-09-12 00:09:09 -07:00
bunnei
fd76432869
android: frontend: Settings: Various updates and preserve single choice text in UI.
2020-09-12 00:09:09 -07:00
bunnei
d2ced94670
android: frontend: SettingsFragmentPresenter: Move speed limit to Graphics, give proper strings.
2020-09-12 00:09:09 -07:00
bunnei
81a060f802
android: frontend: Enlarge icon for launcher.
2020-09-12 00:09:09 -07:00
bunnei
c7c41586ca
android: frontend: SettingsFragmentPresenter: Organize settings into logical categories.
2020-09-12 00:09:09 -07:00
bunnei
68cabace70
android: frontend: SettingsFragmentPresenter: Remove unnecessary settings, add JIT setting.
2020-09-12 00:09:09 -07:00
bunnei
d68d0aa8e0
android: frontend: InputOverlay: Fix setting save for portrait mode.
2020-09-12 00:09:09 -07:00
bunnei
fa48f28aff
android: frontend: Fix settings slider cancel button.
2020-09-12 00:09:09 -07:00
bunnei
c0a9ca70db
android: frontend: auto-reformat all code for consistent style.
2020-09-12 00:09:09 -07:00
bunnei
133f9251dc
android: dynarmic: Use internal dynarmic submodule.
2020-09-12 00:09:09 -07:00
James Rowe
f277d60bf5
Perf: Remove more breakpoint checking in the interpreter. Move filtering earlier in the logging chain
2020-09-12 00:09:09 -07:00
bunnei
180aabe2db
(jroweboy) Remove existing code in src/android
...
Move src/citra_android to src/android/app/src/main/jni
Disable gdbstub breakpoints on android (could be done better)
Disable LOD_BIAS for GLES (not support on gles)
2020-09-12 00:09:09 -07:00
bunnei
fd7b0a6e11
android: frontend: Implement MobilePortrait layout, which makes more sense for mobile.
2020-09-12 00:09:08 -07:00
bunnei
8484c160a9
android: native: Remove several unused hooks.
2020-09-12 00:09:08 -07:00
bunnei
60a5c0968c
android: native: Add hooks for SwitchScreenLayout and SwapScreens.
2020-09-12 00:09:08 -07:00
bunnei
9bda3eedaf
android: config: Update to reflect latest settings.
2020-09-12 00:09:08 -07:00
bunnei
a4c16e2e25
android: frontend: Add base project.
2020-09-12 00:09:08 -07:00
Pengfei Zhu
df9e230d63
Merge pull request #5541 from zhaobot/tx-update-20200901011709
...
Update translations (2020-09-01)
2020-09-10 22:47:58 +08:00
Pengfei Zhu
df83449d21
Merge pull request #5549 from xperia64/squash_reg_warnings
...
Silence some noisy switch case warning
2020-09-10 22:26:45 +08:00
xperia64
1128f5f8ee
Silence some noisy switch case warning
2020-09-06 16:22:48 -04:00
Marshall Mohror
e97ecdc2b8
Merge pull request #5544 from FearlessTobi/port-4461
...
Port yuzu-emu/yuzu#4461 : "Fix thread naming on Linux, which limits names to 15 bytes."
2020-09-06 12:48:43 -05:00
Tobias
316a64961c
Port yuzu-emu/yuzu#4605: "bootmanager: Prevent unnecessary copies in TouchUpdateEvent()" ( #5539 )
...
The list of points is returned by const reference, so we don't need to
make a copy of every element in the list.
Co-authored-by: Lioncash <mathew1800@gmail.com>
2020-09-05 06:09:31 +02:00
comex
2ba35cab73
Fix thread naming on Linux, which limits names to 15 bytes.
...
- In `SetCurrentThreadName`, when on Linux, truncate to 15 bytes, as (at
least on glibc) `pthread_set_name_np` will otherwise return `ERANGE` and
do nothing.
- Also, add logging in case `pthread_set_name_np` returns an error
anyway. This is Linux-specific, as the Apple and BSD versions of
`pthread_set_name_np return `void`.
- Change the name for CPU threads in multi-core mode from
"yuzu:CoreCPUThread_N" (19 bytes) to "yuzu:CPUCore_N" (14 bytes) so it
fits into the Linux limit. Some other thread names are also cut off,
but I didn't bother addressing them as you can guess them from the
truncated versions. For a CPU thread, truncation means you can't see
which core it is!
2020-09-03 03:15:14 +02:00
Pengfei Zhu
6a77547bde
Minor frontend fixes to savestates ( #5430 )
2020-09-03 00:04:23 +02:00
Tobias
66846836bc
Port yuzu-emu/yuzu#4577: "common/assert: Make use of C++ attribute syntax" ( #5529 )
...
Co-authored-by: Lioncash <mathew1800@gmail.com>
2020-09-02 17:25:31 +02:00
Pengfei Zhu
2f01046f77
Merge pull request #5504 from xperia64/savestate_locale_fix
...
Don't translate save/load state hotkey text for the map
2020-09-01 22:42:17 +08:00
Pengfei Zhu
a39e0ea3b1
Merge pull request #5516 from encounter/qdropevent-fix
...
Avoid incorrect casts to QDropEvent
2020-09-01 22:27:37 +08:00
The Citra Community
5d4a3a2d46
Update translations (2020-09-01)
2020-09-01 01:17:46 +00:00
Tobias
f4be733355
citra_qt: Backport review comments from the yuzu translation PR ( #5465 )
2020-08-31 21:13:24 +02:00
Tobias
f6b543886c
Port yuzu-emu/yuzu#4528: "common: Make use of [[nodiscard]] where applicable" ( #5535 )
...
Co-authored-by: LC <712067+lioncash@users.noreply.github.com>
2020-08-31 21:06:16 +02:00
Marshall Mohror
e48110bdf4
Merge pull request #5512 from vitor-k/untangle-includes
...
Forward declare some classes and remove some unnecessary includes
2020-08-29 22:02:25 -05:00
Tobias
4135a12cb5
CMakeLists: Download Clang-Format from the Citra repo instead of yuzus ( #5534 )
...
This problem seems to have slipped through the cracks in the original PR. (https://github.com/citra-emu/citra/pull/3410 )
2020-08-29 21:58:20 +02:00
Tobias
08e508e846
Port yuzu-emu/yuzu#4472: "perf_stats: Mark GetMeanFrametime() as const" ( #5498 )
...
The general pattern is to mark mutexes as mutable when it comes to
matters of constness, given the mutex acts as a transient member of a
data structure.
Co-Authored-By: LC <lioncash@users.noreply.github.com>
2020-08-29 17:29:20 +02:00
Schplee
a5fd11c213
Merge pull request #5500 from FearlessTobi/port-4464-4505
...
Port yuzu-emu/yuzu#4464 and yuzu-emu/yuzu#4505 : Update clang format to version 10.0
2020-08-28 12:13:30 -07:00
Lioncash
1255d82b67
General: Tidy up clang-format warnings
2020-08-28 21:10:42 +02:00
Marshall Mohror
855dc9f0fc
Merge pull request #5518 from tywald/change-log-level
...
cubeb_sink: Change a log from INFO to DEBUG level
2020-08-28 13:54:36 -05:00
Marshall Mohror
88c0288cb1
Merge pull request #5521 from xperia64/fix_hotkey_ordering
...
Fix hotkey ordering
2020-08-28 13:53:40 -05:00
Marshall Mohror
550cc859b5
Merge pull request #5524 from FearlessTobi/port-4582
...
Port yuzu-emu/yuzu#4582 : "externals: Update Xbyak to 5.95"
2020-08-28 13:30:44 -05:00
Marshall Mohror
69f4aacccf
Merge pull request #5531 from FearlessTobi/port-4536
...
Port yuzu-emu/yuzu#4536 : "yuzu: Resolve -Wextra-semi warnings"
2020-08-28 13:29:22 -05:00
Marshall Mohror
f2d26eb73b
Merge pull request #5532 from FearlessTobi/port-4531
...
Port yuzu-emu/yuzu#4531 : "yuzu: Make use of qOverload where applicable"
2020-08-28 13:28:48 -05:00
Marshall Mohror
2a676858be
Merge pull request #5527 from FearlessTobi/port-4518
...
Port yuzu-emu/yuzu#4518 : "CMakeLists: Update fmt to 7.0.3"
2020-08-28 13:19:43 -05:00
Lioncash
1e2e9e555a
yuzu: Make use of qOverload where applicable
...
Eliminates a verbose function cast.
2020-08-28 16:55:55 +02:00
Lioncash
8d6927dc4c
yuzu: Resolve -Wextra-semi warnings
...
While we're in the same area, we can ensure GameDir member variables are
always initialized to consistent values.
2020-08-28 16:43:17 +02:00
FearlessTobi
0ca0aad946
CMakeLists: Update fmt to 7.0.3
...
Keeps the library up to date and fixes a few bugs
Co-Authored-By: LC <712067+lioncash@users.noreply.github.com>
2020-08-28 16:00:00 +02:00
FearlessTobi
8164e58eab
externals: Update Xbyak to 5.95
...
5.95 contains a potentially backward-compatibility breaking change, so
we should be updating to this to ensure that our code remains
forward-compatible.
Co-Authored-By: LC <712067+lioncash@users.noreply.github.com>
2020-08-28 03:19:15 +02:00