| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2022-01-24 | input_common/main: Pass MappingData by const reference in callbacks | Lioncash | |
| Avoids creating unnecessary 168 byte copies per callback invocation. | |||
| 2022-01-24 | input_common/udp_client: Replace deprecated from_string()/to_ulong() functions | Lioncash | |
| These are deprecated and make_address variants and to_uint() should be used instead. | |||
| 2022-01-24 | input_common/udp_client: Prevent unnecessary string copies | Lioncash | |
| We can also remove some redundant const on the return values, since these don't do anything | |||
| 2022-01-24 | kernel/k_affinity_mask: Remove duplicated assert | Lioncash | |
| This is already checked inside GetCoreBit() | |||
| 2022-01-23 | input_common: Add option to configure gyro threshold | german77 | |
| 2022-01-23 | yuzu: Add setting to disable controller navigation | german77 | |
| 2022-01-23 | Update FSR to 1.0.2 | Moonlacer | |
| Updates yuzu's FSR implementation to 1.0.2 | |||
| 2022-01-22 | hle: kernel: KThread: Improve Increment/Decrement RunningThreadCount. | bunnei | |
| - Previously implementation was incorrect, and would occasionally underflow. | |||
| 2022-01-22 | core: hle: kernel: KPageTable: Various improvements to MapPages and UnmapPages. | bunnei | |
| 2022-01-22 | core: hle: kernel: KPageTable: MapProcessCode: Various cleanup. | bunnei | |
| 2022-01-22 | core: hle: kernel: KPageTable: ReserveTransferMemory: Various cleanup. | bunnei | |
| 2022-01-22 | core: hle: kernel: KPageTable: ResetTransferMemory: Various cleanup. | bunnei | |
| 2022-01-22 | core: hle: kernel: KPageTable: SetMemoryAttribute: Various cleanup. | bunnei | |
| 2022-01-22 | Merge pull request #7716 from german77/volume | bunnei | |
| yuzu: Add volume hotkeys | |||
| 2022-01-22 | core: hle: kernel: KPageTable: Assert valid address on GetPhysicalAddr. | bunnei | |
| 2022-01-22 | core: hle: kernel: KPageTable: Operate: Assert lock ownership. | bunnei | |
| 2022-01-22 | core: hle: kernel: KPageTable: SetHeapSize: Cleanup & take physical memory lock. | bunnei | |
| 2022-01-22 | core: hle: kernel: Refactor Un/MapPhysicalMemory to remove unnecessary methods. | bunnei | |
| 2022-01-22 | core: hle: kernel: Rename Un/Map to Un/MapMeory. | bunnei | |
| 2022-01-22 | Merge pull request #7735 from german77/udp_battery | bunnei | |
| input_common: Report battery for UDP controllers | |||
| 2022-01-21 | Merge pull request #7737 from bunnei/fix-dummy-thread-leak | bunnei | |
| Various fixes to HLE service thread management | |||
| 2022-01-21 | yuzu: Add modifiers for keyboard | Narr the Reg | |
| 2022-01-21 | Merge pull request #7752 from Morph1984/SetCpuOverclockEnabled | bunnei | |
| service: apm: Stub ISession SetCpuOverclockEnabled | |||
| 2022-01-21 | hle: kernel: KThread: Ensure host (dummy) threads block on locking. | bunnei | |
| - But do not enter the priority queue, as otherwise they will be scheduled. - Allows dummy threads to use guest synchronization primitives. | |||
| 2022-01-21 | service/wlan: Update function tables | Lioncash | |
| 2022-01-21 | service/usb: Update function tables | Lioncash | |
| 2022-01-21 | service/set: Update function tables | Lioncash | |
| 2022-01-21 | service/ns: Update function tables | Lioncash | |
| 2022-01-21 | service/nim: Update unknown function table entries | Lioncash | |
| 2022-01-21 | service/friend: Update unknown function table entries | Lioncash | |
| 2022-01-21 | service/filsystem: Update fsp-srv function table | Lioncash | |
| 2022-01-21 | service/btm: Update function tables | Lioncash | |
| 2022-01-21 | service/audio: Update audctl unknown function names | Lioncash | |
| 2022-01-21 | service/am: Update omm function tables | Lioncash | |
| 2022-01-21 | service/acc: Update unknown function names | Lioncash | |
| Switchbrew has the function names now. | |||
| 2022-01-21 | Merge pull request #7755 from v1993/someone-in-here-lacks-system-wide-theming | bunnei | |
| Use Default Colorful theme by default outside of Windows | |||
| 2022-01-21 | Merge pull request #7731 from v1993/xfb-varying-check-fix | bunnei | |
| shader_recompiler: fix potential OOB access | |||
| 2022-01-21 | Use Default Colorful theme by default outside of Windows | v1993 | |
| On OSes with system-wide theming this allows yuzu to follow system style, regardless of its exact coloration, working well with both light and dark system themes. Dark /Colorful, on the other hand, forces dark theme regardless of user preferences set in system settings, making for a poor default. Use Colorful variation to keep in line with icon style of patron-voted Dark Colorful. | |||
| 2022-01-20 | service: apm: Stub ISession SetCpuOverclockEnabled | Morph | |
| Since we don't currently support CPU overclocking within the emulated system, this can be stubbed for now, like APM IsCpuOverclockEnabled. - Used by Gravity Rider Zero | |||
| 2022-01-20 | Merge pull request #7695 from Morph1984/is-pow2 | bunnei | |
| common: bit_util: Add IsPow2 helper function | |||
| 2022-01-20 | hle: kernel: Remove redundant tracking of dummy threads. | bunnei | |
| - These are already tracked by kernel's registered_objects member. | |||
| 2022-01-20 | hle: kernel: KThread: DummyThread can be waited, ensure wait_queue is not ↵ | bunnei | |
| nullptr. | |||
| 2022-01-20 | hle: kernel: KThread: Decrease DummyThread priority to ensure it is never ↵ | bunnei | |
| scheduled. | |||
| 2022-01-20 | hle: kernel: service_thread: Ensure dummy thread is closed & destroyed on ↵ | bunnei | |
| thread exit. | |||
| 2022-01-20 | hle: kernel: KServerSession: Remove hack for CompleteSyncRequest. | bunnei | |
| - This does not appear to be necessary anymore. | |||
| 2022-01-20 | hle: kernel: KServerSession: Simplify CompleteSyncRequest EndWait. | bunnei | |
| - Considering is_thread_waiting is never set, so we can remove IsThreadWaiting. - KThread::EndWait will take the scheduler lock, so we can remove the redundant lock. | |||
| 2022-01-20 | hle: kernel: KThread: Ensure dummy threads never call EndWait. | bunnei | |
| - These are only used by host threads for locking and will never have a wait_queue. | |||
| 2022-01-20 | hle: kernel: KScheduler: Ensure dummy threads are never scheduled. | bunnei | |
| - These are only used by host threads for locking. | |||
| 2022-01-20 | hle: kernel: KThread: Rename thread_type_for_debugging -> thread_type. | bunnei | |
| - This will be used to ensure that we do not schedule dummy threads. | |||
| 2022-01-20 | Merge pull request #7710 from german77/just-shake-it | bunnei | |
| core/hid: Increment shake force | |||
