| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2017-06-02 | Moved whitelist checks from FS_User to the Archive_NCCH handler. | TheKoopaKingdom | |
| 2017-06-02 | Created a whitelist of system archives to prevent false positives creating ↵ | TheKoopaKingdom | |
| dialogs. | |||
| 2017-06-02 | Optimized messages that were repetitive and added ability for core errors to ↵ | TheKoopaKingdom | |
| specify more details optionally. | |||
| 2017-06-02 | Made some changes from review comments: | TheKoopaKingdom | |
| - Made LoadKernelSystemMode return a pair consisting of a system mode and a result code (Could use review). - Deleted ErrorOpenGL error code in favor of just having ErrorVideoCore. - Made dialog messages more clear. - Compared archive ID in fs_user.cpp to ArchiveIdCode::NCCH as opposed to hex magic. - Cleaned up some other stuff. | |||
| 2017-06-02 | Added system for handling core errors in citra-qt. | TheKoopaKingdom | |
| 2017-06-02 | Fixed encrypted ROM error messages. | TheKoopaKingdom | |
| 2017-05-31 | Merge pull request #2722 from wwylele/cam-ipc-helper | bunnei | |
| CAM: use IPCHelper | |||
| 2017-05-31 | Merge pull request #2739 from yuriks/kernel-reorg | bunnei | |
| Split-up kernel.h | |||
| 2017-05-29 | Kernel: Move HandleTable to a separate file | Yuri Kunde Schlesner | |
| 2017-05-29 | Kernel: Move WaitObject to a separate file | Yuri Kunde Schlesner | |
| Now that HandleTable doesn't directly depend on WaitObject anymore, this can be separated from the main kernel.h header. | |||
| 2017-05-29 | Kernel: Removed HandleTable::GetWaitObject | Yuri Kunde Schlesner | |
| This isn't necessary anymore since plain Get works correctly for WaitObjects. | |||
| 2017-05-29 | Kernel: Extract dynamic Object pointer cast into its own function | Yuri Kunde Schlesner | |
| 2017-05-27 | CMake: Remove unnecessary include_directories for dynarmic | Yuri Kunde Schlesner | |
| Dynarmic already adds the correct include paths to the library target. | |||
| 2017-05-27 | CMake: Add cryptopp include path to target property | Yuri Kunde Schlesner | |
| 2017-05-27 | CMake: Use IMPORTED target for Boost | Yuri Kunde Schlesner | |
| 2017-05-27 | CMake: Correct inter-module dependencies and library visibility | Yuri Kunde Schlesner | |
| Modules didn't correctly define their dependencies before, which relied on the frontends implicitly including every module for linking to succeed. Also changed every target_link_libraries call to specify visibility of dependencies to avoid leaking definitions to dependents when not necessary. | |||
| 2017-05-27 | Remove some unnecessary inclusions of video_core.h | Yuri Kunde Schlesner | |
| 2017-05-27 | Move screen size constants from video_core to core | Yuri Kunde Schlesner | |
| video_core didn't even properly use them, and they were the source of many otherwise-unnecessary dependencies from core to video_core. | |||
| 2017-05-27 | Core: Fix some out-of-style includes | Yuri Kunde Schlesner | |
| 2017-05-27 | Move framebuffer_layout from Common to Core | Yuri Kunde Schlesner | |
| This removes a dependency inversion between core and common. It's also the proper place for the file since it makes screen layout decisions specific to the 3DS. | |||
| 2017-05-27 | fixup!cam: use IPCHelper | wwylele | |
| 2017-05-26 | Merge pull request #2716 from yuriks/decentralized-result | bunnei | |
| Decentralize ResultCode | |||
| 2017-05-24 | FS: Remove unused result definition | Yuri Kunde Schlesner | |
| 2017-05-24 | Kernel: Centralize error definitions in errors.h | Yuri Kunde Schlesner | |
| 2017-05-24 | GSP_GPU: Move error codes from result.h to local file | Yuri Kunde Schlesner | |
| 2017-05-24 | FileSys: Move all result description to errors.h | Yuri Kunde Schlesner | |
| 2017-05-24 | result: Make error description a generic integer | Yuri Kunde Schlesner | |
| It is now known that result code description vary depending on the module, and so they're best defined on a per-module basis. To support this, allow passing in an arbitrary integer instead of limiting to the ones in the ErrorDescription enum. These will be gradually migrated to their individual users, but a few will be kept as "common" codes shared by all modules. | |||
| 2017-05-24 | Make BitField and ResultCode constexpr-initializable | Yuri Kunde Schlesner | |
| 2017-05-24 | telemetry: Log a few simple data fields throughout core. | bunnei | |
| 2017-05-24 | core: Keep track of telemetry for the current emulation session. | bunnei | |
| 2017-05-24 | cam: move u32->u8 trancation to IPCHelper | wwylele | |
| 2017-05-24 | cam: use IPCHelper | wwylele | |
| 2017-05-22 | Merge pull request #2692 from Subv/vfp_ftz | Sebastian Valle | |
| Dyncom/VFP: Convert denormal outputs into 0 when the FTZ flag is enabled. | |||
| 2017-05-21 | Merge pull request #2406 from Subv/session_disconnect | Yuri Kunde Schlesner | |
| Kernel: Properly update port counters on session disconnection. | |||
| 2017-05-21 | fixup! Dyncom/VFP: Convert denormal outputs into 0 when the FTZ flag is enabled. | Subv | |
| 2017-05-21 | Kernel/Sessions: Remove the ClientSession::Create function. | Subv | |
| It is not meant to be used by anything other than CreateSessionPair. | |||
| 2017-05-22 | Merge pull request #2694 from Subv/vfp_vsub_ftz | Merry | |
| Dyncom/VFP: Perform flush-to-zero on the second operand of vsub before sending it to vadd. | |||
| 2017-05-19 | Merge pull request #2661 from Subv/uds5 | bunnei | |
| Services/UDS: Generate 802.11 beacon frames when a network is open. | |||
| 2017-05-19 | use IPCHelper for PTM services | emmaus | |
| 2017-05-15 | Services/UDS: Use the new IPC helper functions. | Subv | |
| 2017-05-15 | Services/UDS: Implement RecvBeaconBroadcastData. | Subv | |
| This allows the applications to retrieve 802.11 beacon frames from nearby UDS networks. Note that the networks are still not announced anywhere. | |||
| 2017-05-15 | Services/UDS: Generate the UDS beacons when the beacon callback fires. | Subv | |
| 2017-05-15 | Kernel: Remove a now unused enum and variable regarding a session's status. | Subv | |
| 2017-05-15 | Kernel: Use a Session object to keep track of the status of a Client/Server ↵ | Subv | |
| session pair. Reduce the associated port's connection count when a ServerSession is destroyed. | |||
| 2017-05-14 | Merge pull request #2687 from yuriks/address-mappings | Yuri Kunde Schlesner | |
| Kernel: Map special regions according to ExHeader | |||
| 2017-05-13 | Dyncom/VFP: Perform flush-to-zero on the second operand of vsub before ↵ | Subv | |
| sending it to vadd. Previously we were letting vadd flush the value to positive 0, but there are cases where this behavior is wrong, for example, vsub: -0 - +0 = -0 vadd: -0 + +0 = +0 Now we'll flush the value to +0 inside vsub, and then negate it. | |||
| 2017-05-10 | Merge pull request #2676 from wwylele/irrst | bunnei | |
| ir: implement new 3ds HID via ir:rst | |||
| 2017-05-09 | Kernel: Map special regions according to ExHeader | Yuri Kunde Schlesner | |
| This replaces the hardcoded VRAM/DSP mappings with ones made based on the ExHeader ARM11 Kernel caps list. While this has no visible effect for most applications (since they use a standard set of mappings) it does improve support for system modules and n3DS exclusives. | |||
| 2017-05-09 | DSP: Create backing memory for entire DSP RAM | Yuri Kunde Schlesner | |
| Also move address space mapping out of video_core. | |||
| 2017-05-09 | Memory: Add constants for the n3DS additional RAM | Yuri Kunde Schlesner | |
| This is 4MB of extra, separate memory that was added on the New 3DS. | |||
