aboutsummaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2023-07-25"Merge Tagged PR 10839"mainline-0-1507yuzubot
2023-07-25"Merge Tagged PR 10990"yuzubot
2023-07-24Merge pull request #11095 from liamwhite/memory2liamwhite
memory: cleanup
2023-07-24Merge pull request #11135 from liamwhite/getaddrinfoliamwhite
core: implement GetGaiStringErrorRequest, IContextRegistrar
2023-07-23ssa_rewrite_pass: use proper mapsLiam
2023-07-22core: implement GetGaiStringErrorRequest, IContextRegistrarLiam
2023-07-22core: reduce TOCTTOU memory accessLiam
2023-07-22memory: minimize dependency on processLiam
2023-07-22Merge pull request #11094 from liamwhite/getliamwhite
kernel: misc cleanup of page table accessors
2023-07-22Merge pull request #11098 from GPUCode/texel-buffersliamwhite
buffer_cache: Increase number of texture buffers
2023-07-21Merge pull request #11113 from liamwhite/nsd1bunnei
nsd: add GetApplicationServerEnvironmentType
2023-07-21core: remove remaining uses of dynamic_castLiam
2023-07-21general: reduce use of dynamic_castLiam
2023-07-21Merge pull request #11069 from lat9nq/mingw-no-tzdbliamwhite
common: Use arithmetic instead of string ops to get time zone
2023-07-21Merge pull request #11096 from german77/amiiboooliamwhite
service: nfc: Update Implementation to match with latest RE
2023-07-19Merge pull request #11116 from lat9nq/clang-shadowingliamwhite
general: Silence -Wshadow{,-uncaptured-local} warnings
2023-07-19Merge pull request #11114 from Kelebek1/warningsliamwhite
Mark SetIdleTimeDetectionExtension logging as debug
2023-07-18vk_buffer_cache: Formatlat9nq
2023-07-18general: Silence -Wshadow{,-uncaptured-local} warningslat9nq
These occur in the latest commits in LLVM Clang.
2023-07-18Debug SetIdleTimeDetectionExtensionKelebek1
2023-07-17nsd: add GetApplicationServerEnvironmentTypeLiam
2023-07-17ssl: Link with crypt32 for secure channel backendMorph
2023-07-17ssl: Reorder inclusionsMorph
2023-07-17network: Forward declarationsMorph
2023-07-17service: nfc: Update Implementation to match with latest RENarr the Reg
2023-07-17Merge pull request #10934 from abouvier/cmake-vmaliamwhite
cmake: allow using system VMA library
2023-07-17Merge pull request #11102 from v1993/your-mom-is-encryptedliamwhite
android: fix links to re-dumping guides
2023-07-16Merge pull request #10912 from comex/sslmainline-0-1499liamwhite
Implement SSL service
2023-07-16android: fix links to re-dumping guidesValeri Ochinski
2023-07-15buffer_cache: Increase number of texture buffersGPUCode
2023-07-14kernel: reduce page table region checkingLiam
2023-07-14k_process: PageTable -> GetPageTableLiam
2023-07-12file_sys/content_archive: Detect compressed NCAs (#11047)Tobias
2023-07-12time_zone: Clean up includeslat9nq
2023-07-12time_zone: Swap subtraction orderlat9nq
2023-07-12time_zone: Account for leap yearslat9nq
Protects against invalid hour offsets during transitions to years following leap years.
2023-07-12cmake: allow using system VMA libraryAlexandre Bouvier
2023-07-11Merge pull request #10985 from liamwhite/handle-translatebunnei
k_server_session: translate special header for non-HLE requests
2023-07-11Merge pull request #11070 from t895/home-setting-warningbunnei
android: Visualize disabled home options
2023-07-10android: Visualize disabled home optionsCharles Lombardo
Allow for displaying options in the home options that are disabled with messages that explain why they are disabled. This includes reasoning for the GPU driver installation button.
2023-07-10Merge pull request #10996 from Kelebek1/readblock_optimisationbunnei
Use spans over guest memory where possible instead of copying data
2023-07-10Merge pull request #11050 from SuperSamus/sdl-button-labelsbunnei
input_common: set `SDL_HINT_GAMECONTROLLER_USE_BUTTON_LABELS` to 0
2023-07-10settings: Disable C++20 tzdb path on MinGWlat9nq
This path always results in Etc/UTC on MinGW, which often is not close to the local time zone.
2023-07-10time_zone: Remove string ops for determing zonelat9nq
MinGW's strftime implementation does not work and cannot be used to determine the time zone. Besides that, the string operations are actually unnecessary since we can get the offset from std::localtime. Compare localtime to gmtime to find the zone offset on all platforms.
2023-07-09Merge pull request #11067 from t895/fragile-databunnei
android: Don't prompt to save user data on uninstall
2023-07-09Merge pull request #11055 from lat9nq/tzdb-catch-Morph
settings: Catch runtime error from STL
2023-07-09android: Don't prompt to save user data on uninstallCharles Lombardo
While this can be convenient in some scenarios, this will be a big problem for users trying to sideload different APK versions. If they forget the last one they had installed, they could have problems installing a new copy.
2023-07-09Merge pull request #11063 from liamwhite/oopsMorph
arm_interface: correct breakpoint rewind condition
2023-07-09arm_interface: correct breakpoint rewind conditionLiam
2023-07-09settings: Catch runtime error from STLlat9nq
This function throws a runtime error we can catch on old Windows 10 installs, so we can catch it here rather than disable this path for everybody.