summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/ns (follow)
Commit message (Collapse)AuthorAgeFilesLines
* file_util: Use an enum class for GetUserPath()Lioncash2018-07-211-1/+1
| | | | | | | | | | | | | Instead of using an unsigned int as a parameter and expecting a user to always pass in the correct values, we can just convert the enum into an enum class and use that type as the parameter type instead, which makes the interface more type safe. We also get rid of the bookkeeping "NUM_" element in the enum by just using an unordered map. This function is generally low-frequency in terms of calls (and I'd hope so, considering otherwise would mean we're slamming the disk with IO all the time) so I'd consider this acceptable in this case.
* pl_u: Simplify WriteBuffer() calls in GetSharedFontInOrderOfPriority()Lioncash2018-07-201-3/+3
| | | | With the new overload, we can simply pass the container directly.
* Merge pull request #725 from lioncash/bytesbunnei2018-07-201-3/+3
|\ | | | | pl_u: Specify correct size for buffers in GetSharedFontInOrderOfPriority()
| * pl_u: Specify correct size for buffers in GetSharedFontInOrderOfPriority()Lioncash2018-07-191-3/+3
| | | | | | | | | | This WriteBuffer overload expects its size argument to be in bytes, not elements.
* | pl_u: Remove printf specifier in log call in a log call in GetSharedFontInOrderOfPriority()Lioncash2018-07-191-1/+1
|/ | | | This can just use the fmt specifiers and be type-agnostic.
* Rename logging macro back to LOG_*James Rowe2018-07-031-7/+7
|
* GetSharedFontInOrderOfPriority (#381)David2018-05-012-1/+27
| | | | | | | | | | | | | | | | | | | | * GetSharedFontInOrderOfPriority * Update pl_u.cpp * Ability to use ReadBuffer and WriteBuffer with different buffer indexes, fixed up GetSharedFontInOrderOfPriority * switched to NGLOG * Update pl_u.cpp * Update pl_u.cpp * language_code is actually language code and not index * u32->u64 * final cleanups
* ns: Move logging macros over to new fmt-compatible onesLioncash2018-04-241-6/+6
|
* service: Use nested namespace specifiers where applicableLioncash2018-04-204-16/+8
| | | | Tidies up namespace declarations
* pl_u: Use empty shared font if none is available.bunnei2018-04-151-17/+14
| | | | - Makes games work in lieu of shared_font.bin.
* Updated pl:u with more service names.Hexagon122018-04-101-1/+3
|
* pl_u: Add RequestLoad.bunnei2018-03-252-0/+11
|
* core: Move process creation out of global state.bunnei2018-03-141-4/+5
|
* pl_u: Implement basic shared font loading from RAM dump.bunnei2018-02-154-0/+176
|
* Remove lots more 3DS-specific code.bunnei2017-10-134-87/+0
|
* Services/NS: Port ns:s to the new service framework.Subv2017-09-164-0/+87