- 20 Oct, 2022 3 commits
-
-
liamwhite authored
Controller Applet had instance of Undocked, make Handheld
-
bunnei authored
[audio_core] Update for firmware 15.0.0
-
Kyle Kienapfel authored
Remember that time we renamed the Undocked option to Handheld in the status bar, and then later remembered the Controller Configuration? Scrolling through Transifex I noticed that we still have one instance of "Undocked" in the text.
-
- 19 Oct, 2022 31 commits
-
-
liamwhite authored
common/fixed_point: Minor interface improvements
-
liamwhite authored
savedata_factory: Detect future save data paths
-
liamwhite authored
kernel: fix slab heap ABA
-
liamwhite authored
Kernel Multiprocess (Part 1) - Persist memory & core timing
-
bunnei authored
-
Kelebek1 authored
-
Fernando S authored
video_core: implement 1D copies based on VMM 'kind'
-
bunnei authored
-
bunnei authored
-
bunnei authored
-
bunnei authored
-
bunnei authored
-
bunnei authored
-
bunnei authored
-
bunnei authored
-
bunnei authored
-
bunnei authored
-
bunnei authored
-
bunnei authored
-
bunnei authored
-
bunnei authored
-
bunnei authored
-
bunnei authored
-
bunnei authored
-
bunnei authored
-
bunnei authored
-
bunnei authored
-
bunnei authored
-
bunnei authored
-
bunnei authored
-
bunnei authored
-
- 18 Oct, 2022 6 commits
-
-
Lioncash authored
Ensures that a fixed-point value is always initialized This likely also fixes several cases of uninitialized values being operated on, since we have multiple areas in the codebase where the default constructor is being used like: Common::FixedPoint<50, 14> current_sample{}; and is then followed up with an arithmetic operation like += or something else, which operates directly on FixedPoint's internal data member, which would previously be uninitialized.
-
Lioncash authored
Given these are just moving a raw value around, these can sensibly be made constexpr to make the interface more useful.
-
Lioncash authored
These shouldn't throw and can influence how some standard algorithms will work.
-
Lioncash authored
Marks member functions as discard, where ignoring the return value would be indicative of a bug or dead code.
-
Lioncash authored
This calls round_up(), which is a non-const member function, so if a fixed-point instantiation ever calls to_uint(), it'll result in a compiler error. This allows the member function to work. While we're at it, we can actually mark to_long_floor() as const, since it's not modifying any member state.
-
Lioncash authored
Collapses all of the comparison functions down to a single line.
-