| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2021-06-22 | Merge pull request #6483 from Morph1984/get-tz-file | bunnei | |
| service: time: Use GetFileRelative to get files within subdirectories | |||
| 2021-06-22 | vfs_real: Fix Mode to FileAccessMode conversion | Morph | |
| These enforce requiring the file to exist prior to opening. | |||
| 2021-06-22 | common: fs: Remove [[nodiscard]] attribute on Remove* functions | Morph | |
| There are a lot of scenarios where we don't particularly care whether or not the removal operation and just simply attempt a removal. As such, removing the [[nodiscard]] attribute is best for these functions. | |||
| 2021-06-22 | Merge pull request #6511 from ReinUsesLisp/core-is-powered-data-race | Mai M | |
| core: Make is_powered_on atomic | |||
| 2021-06-22 | core: Make is_powered_on atomic | Rodrigo Locatti | |
| Fixes potential data races when shutting down. | |||
| 2021-06-22 | npad: Fix data race when updating devices | Rodrigo Locatti | |
| Add a lock to avoid data races. This reduces the number of -fsanitize=thread errors significantly. | |||
| 2021-06-21 | Merge pull request #6481 from Morph1984/missing-peak-set | bunnei | |
| kernel: Fix missing peak set in KResourceLimit::SetLimitValue | |||
| 2021-06-22 | Implement audout GetAudioOutPlayedSampleCount | Kelebek1 | |
| Used in Ninja Gaiden games. | |||
| 2021-06-21 | Merge pull request #6499 from FernandoS27/we-were-on-a-break | bunnei | |
| Update dynarmic and add new unsafe CPU option. | |||
| 2021-06-20 | Update dynarmic and add new unsafe CPU option. | Fernando Sahmkow | |
| 2021-06-18 | service: time: Use GetFileRelative to get files within subdirectories | Morph | |
| The timezone info file can be within subdirectories (such as Asia/Tokyo), use GetFileRelative instead of GetFile to get files within subdirectories. | |||
| 2021-06-18 | kernel: Fix missing peak set in KResourceLimit::SetLimitValue | Morph | |
| 2021-06-17 | nvflinger: Add toggle to disable buffer swap interval limits | ameerj | |
| Enabling this setting will allow some titles to present more frames to the screen as they become available in the nvflinger buffer queue. | |||
| 2021-06-16 | Merge pull request #6464 from ameerj/disable-astc | bunnei | |
| textures: Add a toggle for GPU Accelerated ASTC decoder | |||
| 2021-06-16 | spl: Mark the other functions as unimplemented | Morph | |
| 2021-06-16 | spl: Implement spl::GetConfig | Morph | |
| 2021-06-16 | hle: api_version: Add HLE API version constants | Morph | |
| 2021-06-16 | spl: Add the general SPL interface | Morph | |
| 2021-06-16 | spl: Add SPL types | Morph | |
| 2021-06-16 | spl: Add SPL result codes | Morph | |
| 2021-06-16 | fsp_srv: Fix filesystem access logging | Morph | |
| This introduces a new setting Enable FS Access Log which saves the filesystem access log to sdmc:/FsAccessLog.txt If this setting is not enabled, this will indicate to FS to not call OutputAccessLogToSdCard. Fixes softlocks during loading in Xenoblade Chronicles 2 when certain DLC is enabled. | |||
| 2021-06-15 | configure_graphics: Add Accelerate ASTC decoding setting | ameerj | |
| 2021-06-14 | lm: Demote guest logs to LOG_DEBUG | ameerj | |
| Guest logs are not very useful, as they are intended for use by the game developers during development. As such, they provide little meaning to be logged by yuzu and tend to overwhelm the log output at times. | |||
| 2021-06-13 | general: Remove extraneous includes | Morph | |
| 2021-06-13 | Merge pull request #6452 from german77/sixaxis_firmware_stub | Morph | |
| hid: Stub IsFirmwareUpdateAvailableForSixAxisSensor | |||
| 2021-06-11 | hid: Stub IsFirmwareUpdateAvailableForSixAxisSensor | german77 | |
| 2021-06-11 | Merge pull request #6422 from FernandoS27/i-am-the-senate | Mai M | |
| Implement/Port Fastmem from Citra to Yuzu | |||
| 2021-06-11 | Merge pull request #6443 from Morph1984/k-light-condition-variable | bunnei | |
| kernel: KLightConditionVariable: Update implementation to 12.x | |||
| 2021-06-11 | General: Add settings for fastmem and disabling adress space check. | FernandoS27 | |
| 2021-06-11 | core: Make use of fastmem | Markus Wick | |
| 2021-06-10 | Merge pull request #6445 from degasus/fix_ubsn | bunnei | |
| Fix GCC undefined behavior sanitizer. | |||
| 2021-06-11 | kernel: Unconditionally set thread state when appropriate | Morph | |
| 2021-06-11 | kernel: KLightConditionVariable: Update implementation to 12.x | Morph | |
| Updates the implementation of KLightConditionVariable to FW 12.x | |||
| 2021-06-10 | Fix GCC undefined behavior sanitizer. | Markus Wick | |
| * Wrong alignment in u64 LOG_DEBUG -> memcpy. * Huge shift exponent in stride calculation for linear buffer, unused result -> skipped. * Large shift in buffer cache if word = 0, skip checking for set bits. Non of those were critical, so this should not change any behavior. At least with the assumption, that the last one used masking behavior, which always yield continuous_bits = 0. | |||
| 2021-06-10 | hle: service: sm: Remove redundant session reservation, etc. | bunnei | |
| - We were double-reserving, causing us to run out of sessions in Pokemon Sword & Shield. | |||
| 2021-06-10 | hle: service: Increase arbitrary max sessions limit. | bunnei | |
| - Pokemon Sword/Shield are still hitting this for some reason, causing an svcBreak. | |||
| 2021-06-09 | hle: kernel: KClientPort: Add an assert for session count. | bunnei | |
| - Prevents us from over decrementing num_sessions. | |||
| 2021-06-09 | hle: service: sm: Fix GetService setup of session & port. | bunnei | |
| 2021-06-09 | hle: service: Use correct size for ServerSessionCountMax. | bunnei | |
| 2021-06-09 | hle: kernel: KServerSession: Fix client disconnected. | bunnei | |
| - Prevents a cloned session's handler from being overwritten by another disconnected session. - Fixes session handler nullptr asserts with Pokemon Sword & Shield. | |||
| 2021-06-09 | kernel: svc: Add missing error check to CancelSynchronization. | bunnei | |
| - Avoids a potential crash if the handle is invalid, and also makes this code accurate to real kernel behavior. | |||
| 2021-06-09 | hle: service: Increase arbitrary max sessions limit. | bunnei | |
| - Pokemon Sword/Shield are still hitting this for some reason, causing an svcBreak. | |||
| 2021-06-08 | hle: kernel: KServerSession: Work-around scenario where session is closed ↵ | bunnei | |
| too early. | |||
| 2021-06-07 | hle: kernel: hle_ipc: Ensure SessionRequestHandler is valid. | bunnei | |
| 2021-06-07 | hle: kernel: Remove service thread manager and use weak_ptr. | bunnei | |
| - We no longer need to queue up service threads to be destroyed. - Fixes a race condition where a thread could be destroyed too early, which caused a crash in Pokemon Sword/Shield. | |||
| 2021-06-06 | Merge pull request #6414 from bunnei/fix-service-threads | bunnei | |
| hle: kernel: Refactor to allocate a ServiceThread per service handler. | |||
| 2021-06-06 | hle: kernel: KServerSession: Use ASSERT_MSG where appropriate. | bunnei | |
| 2021-06-06 | hle: kernel: k_server_session: Return service thread by strong pointer. | bunnei | |
| 2021-06-06 | hle: kernel: k_server_session: Ensure service thread is valid before ↵ | bunnei | |
| dereference. | |||
| 2021-06-06 | hle: kernel: hle_ipc: Use default destructor for SessionRequestManager. | bunnei | |
