summaryrefslogtreecommitdiff
path: root/src/core (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #367 from lioncash/clampGravatar bunnei2018-04-201-1/+2
|\ | | | | math_util: Remove the Clamp() function
| * math_util: Remove the Clamp() functionGravatar Lioncash2018-04-201-1/+2
| | | | | | | | | | C++17 adds clamp() to the standard library, so we can remove ours in favor of it.
* | Merge pull request #360 from lioncash/namespacesGravatar bunnei2018-04-20136-570/+273
|\ \ | | | | | | service: Use nested namespace specifiers where applicable
| * | service: Use nested namespace specifiers where applicableGravatar Lioncash2018-04-19136-570/+273
| |/ | | | | | | Tidies up namespace declarations
* | Merge pull request #363 from lioncash/array-sizeGravatar bunnei2018-04-201-1/+2
|\ \ | | | | | | common_funcs: Remove ARRAY_SIZE macro
| * | common_funcs: Remove ARRAY_SIZE macroGravatar Lioncash2018-04-191-1/+2
| |/ | | | | | | C++17 has non-member size() which we can just call where necessary.
* | Merge pull request #358 from lioncash/explicitGravatar bunnei2018-04-192-4/+3
|\ \ | | | | | | disk_filesystem: Minor changes
| * | disk_filesystem: Remove unused total_entries_in_directory member from ↵Gravatar Lioncash2018-04-191-1/+0
| | | | | | | | | | | | Disk_Directory
| * | disk_filesystem: Remove redundant initializer in Disk_Directory's constructorGravatar Lioncash2018-04-191-1/+1
| | |
| * | disk_filesystem: Make constructors explicit where applicableGravatar Lioncash2018-04-191-2/+2
| |/
* / vi: Remove redundant initializers in the constructorsGravatar Lioncash2018-04-191-9/+5
|/
* nvflinger: Call MicroProfileFlip on NVFlinger::Compose.Gravatar bunnei2018-04-181-0/+3
|
* Merge pull request #341 from shinyquagsire23/pfs-hfs-implGravatar bunnei2018-04-173-0/+214
|\ | | | | file_sys: Add HFS/PFS helper component
| * file_sys: Use NGLOGGravatar shinyquagsire232018-04-171-5/+5
| |
| * file_sys: tweaksGravatar shinyquagsire232018-04-162-6/+7
| |
| * file_sys: Add HFS/PFS helper componentGravatar shinyquagsire232018-04-163-0/+213
| |
* | Various service name fixes - part 2 (rebased) (#322)Gravatar Hexagon122018-04-1713-11/+207
|/ | | | | | | | | | | | | | | | * Updated ACC with more service names * Updated SVC with more service names * Updated set with more service names * Updated sockets with more service names * Updated SPL with more service names * Updated time with more service names * Updated vi with more service names
* Merge pull request #338 from bunnei/unrequire-shared-fontGravatar bunnei2018-04-151-17/+14
|\ | | | | pl_u: Use empty shared font if none is available.
| * pl_u: Use empty shared font if none is available.Gravatar bunnei2018-04-151-17/+14
| | | | | | | | - Makes games work in lieu of shared_font.bin.
* | fsp_srv: Implement DeleteFile.Gravatar bunnei2018-04-156-9/+27
|/ | | | - Used by Binding of Isaac.
* Merge pull request #332 from bunnei/fix-total-mem-usageGravatar bunnei2018-04-141-1/+1
|\ | | | | vm_manager: Increase GetTotalMemoryUsage value.
| * vm_manager: Increase GetTotalMemoryUsage value.Gravatar bunnei2018-04-141-1/+1
| | | | | | | | - Gets Binding of Isaac running.
* | fsp_srv: Implement IFile::Flush.Gravatar bunnei2018-04-141-1/+9
|/
* Merge pull request #323 from Hexagon12/stub-hidGravatar bunnei2018-04-131-1/+7
|\ | | | | Service/HID: Stubbed out GetPlayerLedPattern
| * Stubbed out GetPlayerLedPatternGravatar Hexagon122018-04-131-1/+7
| |
* | Fixed normal params in GetDisplayResolutionGravatar Hexagon122018-04-131-1/+1
|/
* Merge pull request #319 from Hexagon12/service-name-fixGravatar bunnei2018-04-1321-65/+413
|\ | | | | Various service name fixes - part 1
| * Various fixes and clangGravatar Hexagon122018-04-116-115/+108
| |
| * Decimal changeGravatar Hexagon122018-04-101-4/+4
| |
| * Updated pctl:a with new service names.Gravatar Hexagon122018-04-101-4/+101
| |
| * Updated nvmemp with new service names.Gravatar Hexagon122018-04-101-4/+4
| |
| * Updated nvdrv with more service names.Gravatar Hexagon122018-04-101-0/+7
| |
| * Updated pl:u with more service names.Gravatar Hexagon122018-04-101-1/+3
| |
| * Updated hid with more service names.Gravatar Hexagon122018-04-101-0/+50
| |
| * Updated friend:u with more service names.Gravatar Hexagon122018-04-101-1/+2
| |
| * Updated the unknown nameGravatar Hexagon122018-04-101-1/+1
| |
| * Updated friend:a with more service names.Gravatar Hexagon122018-04-101-1/+2
| |
| * Updated fsp-srv with more service names.Gravatar Hexagon122018-04-101-4/+102
| |
| * Updated CodecCtl with more service names.Gravatar Hexagon122018-04-101-3/+3
| |
| * Updated audren with more service names.Gravatar Hexagon122018-04-101-10/+14
| |
| * Updated audrec with more service names.Gravatar Hexagon122018-04-101-7/+9
| |
| * Updated audout with more service names.Gravatar Hexagon122018-04-101-13/+16
| |
| * Updated audin with more service names.Gravatar Hexagon122018-04-101-9/+16
| |
| * Updated AOC with more service names.Gravatar Hexagon122018-04-101-0/+1
| |
| * Updated AppletOE with more service names.Gravatar Hexagon122018-04-101-0/+1
| |
| * Updated AppletAE with more service names.Gravatar Hexagon122018-04-101-0/+1
| |
| * Updated AM with more service names.Gravatar Hexagon122018-04-101-2/+82
| |
* | Service/SSL: update service according switchbrewGravatar mailwl2018-04-112-1/+98
| |
* | Service/ACC: convert to module, add acc:aa, acc:su, acc:u1 servicesGravatar mailwl2018-04-1011-127/+342
|/
* Fix spelling of InitializeGravatar James Rowe2018-04-072-3/+3
|