| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2015-10-06 | Silence -Wsign-compare warnings. | Rohit Nirmal | |
| 2015-09-30 | Service/CFG: Use a constexpr function for country initialization | Emmanuel Gil Peyrot | |
| This fixes a TODO left over from when we supported MSVC 2013. | |||
| 2015-09-29 | fix some xcode 7.0 warnings | Martin Lindhe | |
| 2015-09-16 | general: Silence some warnings when using clang | Lioncash | |
| 2015-09-14 | Service/CFG: Add default entry for block 0x000A0001 (birthday) | Yuri Kunde Schlesner | |
| 2015-09-14 | Service/CFG: Correct flags in 2 default blocks | Yuri Kunde Schlesner | |
| Verified against a 9.2.0-20 config save | |||
| 2015-09-14 | Service/CFG: Add additional blocks to default save data | Yuri Kunde Schlesner | |
| These blocks are required by various games to boot. | |||
| 2015-09-14 | Fix narrowing conversion warning | Yuri Kunde Schlesner | |
| 2015-09-14 | Service/CFG: Move several private types from the header to the cpp | Yuri Kunde Schlesner | |
| 2015-09-14 | Service/CFG: Clean up default block creation | Yuri Kunde Schlesner | |
| 2015-09-14 | GSP: Implement command 0x05, used for flushing caches | Yuri Kunde Schlesner | |
| May fix additional texture caching issues. (Though mostly in homebrew, I haven't seen any commercial software use this to flush anything but command lists.) | |||
| 2015-09-11 | General: Replace NULL and '0' usages with nullptr where applicable | Lioncash | |
| 2015-09-10 | General: Fix up doxygen comments | Lioncash | |
| 2015-09-03 | Merge pull request #1101 from archshift/camu-service-names | bunnei | |
| Add cam:u service function names to its function table | |||
| 2015-09-03 | Add cam:u service function names to its function table | archshift | |
| 2015-09-01 | Merge pull request #1072 from yuriks/GetSystemTick-advance-time | bunnei | |
| SVC: Advance time when calling GetSystemTick to escape busy-wait loops | |||
| 2015-08-30 | SVC: Advance time when calling GetSystemTick to escape busy-wait loops | Yuri Kunde Schlesner | |
| Cubic Ninja waited for the frame to end by spinning on a loop calling GetSystemTick while doing nothing else. Since GetSystemTick doesn't cause a reschedule (which advances time), this meant that very little emulated time would pass inside that loop, causing the game to spend most of the frame burning away CPU. | |||
| 2015-08-27 | Kernel: Fix wrong linear heap base on titles using newer kernels | Yuri Kunde Schlesner | |
| Typo which sneaked in through review on #1025 | |||
| 2015-08-26 | Kernel: Fix assertion failure when ControlMemory is called with size=0 | Yuri Kunde Schlesner | |
| 2015-08-26 | Core: Improve APT Shared Font hack | Yuri Kunde Schlesner | |
| Should fix invalid read loops in some games | |||
| 2015-08-24 | Integrate the MicroProfile profiling library | Yuri Kunde Schlesner | |
| This brings goodies such as a configurable user interface and multi-threaded timeline view. | |||
| 2015-08-22 | Merge pull request #1025 from yuriks/heap-management | Yuri Kunde Schlesner | |
| Kernel: Correct(er) handling of Heap and Linear Heap allocations | |||
| 2015-08-16 | GPU: Implement TextureCopy-mode display transfers | Yuri Kunde Schlesner | |
| Fixes glitchy garbage in Fire Emblem 3D scenes. | |||
| 2015-08-16 | Kernel: Remove unused legacy heap MapBlock_* functions | Yuri Kunde Schlesner | |
| 2015-08-16 | APT: Adjust shared font hack so it works with the new linear heap code | Yuri Kunde Schlesner | |
| 2015-08-16 | Kernel: Implement svcGetProcessInfo in a basic way | Yuri Kunde Schlesner | |
| This also adds some basic memory usage accounting. These two types are used by Super Smash Bros. during startup. | |||
| 2015-08-16 | Kernel: Add more infrastructure to support different memory layouts | Yuri Kunde Schlesner | |
| This adds some structures necessary to support multiple memory regions in the future. It also adds support for different system memory types and the new linear heap mapping at 0x30000000. | |||
| 2015-08-16 | HLE: Remove empty ConfigMem and SharedPage Shutdown functions | Yuri Kunde Schlesner | |
| 2015-08-16 | Move core/mem_map.{cpp,h} => core/hle/kernel/memory.{cpp,h} | Yuri Kunde Schlesner | |
| 2015-08-16 | Memory: Move address type conversion routines to memory.cpp/h | Yuri Kunde Schlesner | |
| These helpers aren't really part of the kernel, and mem_map.cpp/h is going to be moved there next. | |||
| 2015-08-16 | Process: Store kernel compatibility version during loading | Yuri Kunde Schlesner | |
| 2015-08-16 | Kernel: Properly implement ControlMemory FREE and COMMIT | Yuri Kunde Schlesner | |
| 2015-08-16 | VMManager: Introduce names for used ResultCodes | Yuri Kunde Schlesner | |
| 2015-08-16 | VMManager: Make LogLayout log level configurable as a parameter | Yuri Kunde Schlesner | |
| 2015-08-16 | VMManager: Change block offsets to size_t | Yuri Kunde Schlesner | |
| 2015-07-29 | core: Eliminate some unused variable warnings | Lioncash | |
| 2015-07-29 | core: Fix missing prototype warnings | Lioncash | |
| 2015-07-29 | Merge pull request #1009 from lioncash/table | Yuri Kunde Schlesner | |
| am_net: Update function table data | |||
| 2015-07-29 | am_net: Add missing function to the function table | Lioncash | |
| 2015-07-29 | am_net: Add correct function name to the function table | Lioncash | |
| 2015-07-29 | Merge pull request #982 from Subv/home | bunnei | |
| Service/APT: Return proper parameters in GetLockHandle. | |||
| 2015-07-28 | Merge pull request #899 from zawata/Winsock-Deprecation | bunnei | |
| SOC:U : Fix WinSock function deprecation | |||
| 2015-07-28 | Merge pull request #873 from jroweboy/input_array | Tony Wasserka | |
| Move input values into an array. | |||
| 2015-07-27 | Move input values into an array | James Rowe | |
| 2015-07-25 | dyncom: Rename armdefs.h to armstate.h | Lioncash | |
| 2015-07-25 | Merge pull request #888 from zawata/Warning-Fixes-2 | Yuri Kunde Schlesner | |
| Core\HLE : Fix Warning | |||
| 2015-07-23 | Service/APT: Fixed a regression, PreloadLibraryApplet should also start an ↵ | Subv | |
| applet when called. | |||
| 2015-07-23 | Service/APT: Return proper parameters in GetLockHandle. | Subv | |
| Documented some APT functions This allows applets to boot. | |||
| 2015-07-23 | Merge pull request #983 from yuriks/null-memory-fill | Yuri Kunde Schlesner | |
| GSP: Don't try to write memory fill registers if start address is 0 | |||
| 2015-07-23 | GSP: Don't try to write memory fill registers if start address is 0 | Yuri Kunde Schlesner | |
| Verified to be what GSP does via REing. Fixes invalid virt->phys translation error spam in some games. | |||
