| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2018-11-12 | Merge pull request #1670 from DarkLordZach/deterministic-rng | bunnei | |
| csrng: Add config option to set RNG seed | |||
| 2018-11-12 | Merge pull request #1665 from ogniK5377/GetClockSnapshot | bunnei | |
| Implement GetClockSnapshot, ToPosixTime & ToPosixTimeWithMyRule | |||
| 2018-11-12 | svc: Return random seed for svcGetInfo RandomEntropy | Zach Hilman | |
| 2018-11-11 | settings: Add config option to set RNG seed | Zach Hilman | |
| 2018-11-11 | csrng: Use std::mt19937 engine for random number generation | Zach Hilman | |
| 2018-11-11 | Merge pull request #1652 from FreddyFunk/static-cast | bunnei | |
| configure_system: Fix compiler warning | |||
| 2018-11-10 | Merge pull request #1656 from ogniK5377/message-queue | James Rowe | |
| Ability to switch between docked and undocked mode in-game | |||
| 2018-11-10 | Added maybe_unused | David Marcec | |
| 2018-11-10 | Added ToPosixTime & ToPosixTimeWithMyRule | David Marcec | |
| Added instead of using a seperate PR to prevent conflicts | |||
| 2018-11-10 | Added consts and static | David Marcec | |
| 2018-11-10 | Implement GetClockSnapshot | David Marcec | |
| Needed by megaman 11 | |||
| 2018-11-07 | Merge pull request #1658 from ogniK5377/holdtype-style | bunnei | |
| Updated npad styles on holdtype switches | |||
| 2018-11-07 | svcBreak now dumps information from the debug buffer passed (#1646) | David | |
| * svcBreak now dumps information from the debug buffer passed info1 and info2 seem to somtimes hold an address to a buffer, this is usually 4 bytes or the size of the int and contains an error code. There's other circumstances where it can be something different so we hexdump these to examine them at a later date. * Addressed comments | |||
| 2018-11-08 | Updated npad styles on holdtype switches | David Marcec | |
| Fixes input for megaman | |||
| 2018-11-07 | Fixups | David Marcec | |
| 2018-11-07 | Ability to switch between docked and undocked mode in-game | David Marcec | |
| Started implementation of the AM message queue mainly used in state getters. Added the ability to switch docked mode whilst in game without stopping emulation. Also removed some things which shouldn't be labelled as stubs as they're implemented correctly | |||
| 2018-11-07 | fixed spelling error | David Marcec | |
| 2018-11-07 | Added missing log | David Marcec | |
| 2018-11-07 | Implement acc:TrySelectUserWithoutInteraction | David Marcec | |
| Needed for Shantae - Half-Genie Hero - Ultimate Edition! | |||
| 2018-11-06 | configure_system: Fix compiler warning | Frederic Laing | |
| 2018-11-05 | Merge pull request #1633 from ogniK5377/reload-input | bunnei | |
| Fixed HID crash when launching more than 1 game & signaled styleset change event | |||
| 2018-11-04 | Fix typo in BufferTransformFlags | Frederic Laing | |
| 2018-11-02 | Fixed incorrect hwopus assert | David Marcec | |
| 2018-11-02 | Fixed HID crash when launching more than 1 game & signaled syleset change event | David Marcec | |
| This should fix crashes when launching multiple games in yuzu | |||
| 2018-11-01 | Merge pull request #1615 from lioncash/input | bunnei | |
| configure_system: Contrain profile usernames to 32 characters | |||
| 2018-10-31 | Merge pull request #1604 from FearlessTobi/port-4369 | bunnei | |
| Port citra-emu/citra#4369: "compatdb: Use a seperate endpoint for testcase submission" | |||
| 2018-10-31 | configure_system: Contrain profile usernames to 32 characters | Lioncash | |
| Previously, we would let a user enter an unbounded name and then silently truncate away characters that went over the 32-character limit. This is kind of bad from the UX point of view, because we're essentially not doing what the user intended in certain scenarios. Instead, we clamp it to 32 characters and make that visually apparent in the dialog box to provide a name for a user. | |||
| 2018-10-30 | service/usb: Update IPdSession's function table | Lioncash | |
| Updated based off information on SwitchBrew. | |||
| 2018-10-30 | general: Remove unused boost inclusions where applicable | Lioncash | |
| Cleans up unused includes and trims off some dependencies on externals. | |||
| 2018-10-30 | global: Use std::optional instead of boost::optional (#1578) | Frederic L | |
| * get rid of boost::optional * Remove optional references * Use std::reference_wrapper for optional references * Fix clang format * Fix clang format part 2 * Adressed feedback * Fix clang format and MacOS build | |||
| 2018-10-29 | Merge pull request #1621 from lioncash/ipc | bunnei | |
| hle_ipc: Make GetDomainMessageHeader return a regular pointer | |||
| 2018-10-29 | hle_ipc: Add member function for querying the existence of a domain header | Lioncash | |
| Gets rid of the need to call the getter and then check for null. | |||
| 2018-10-29 | hle_ipc: Make GetDomainMessageHeader return a regular pointer | Lioncash | |
| Nothing requires the shared owner ship here, so we can just return a plain pointer. | |||
| 2018-10-28 | core: Make System references const where applicable | Lioncash | |
| 2018-10-28 | core: Add missing const variants of getters for the System class | Lioncash | |
| Many of the Current<Thing> getters (as well as a few others) were missing const qualified variants, which makes it a pain to retrieve certain things from const qualified references to System. | |||
| 2018-10-28 | compatdb: Use a seperate endpoint for testcase submission | fearlessTobi | |
| 2018-10-28 | Merge pull request #1593 from lioncash/svc | bunnei | |
| svc: Implement svcGetInfo command 0xF0000002 | |||
| 2018-10-28 | file_sys/patch_manager: Remove unnecessary if-statements (#1586) | Frederic L | |
| * remove unnecessary if-statements * Addressed feedback | |||
| 2018-10-28 | Merge pull request #1598 from DeeJayBro/delete-directory | bunnei | |
| service/filesystem: Implemented DeleteDirectory & DeleteDirectoryRecursive | |||
| 2018-10-28 | Merge pull request #1600 from DarkLordZach/nsp-secondary-loader-fix | bunnei | |
| loader/nsp: Move secondary loader initialization to constructor | |||
| 2018-10-27 | key_manager: Use isxdigit instead of isdigit when reading key file | Zach Hilman | |
| Crypto revisions are hex numbers and this function only checks if the string is valid for stoul in base 16, so it should be isxdigit. | |||
| 2018-10-27 | loader/nsp: Move secondary loader initialization to constructor | Zach Hilman | |
| Prevents nullptr bug when trying to dump the RomFS of an NSP resulting from secondary_loader not being initialized. | |||
| 2018-10-27 | service/filesystem: Add DirectoryDelete & DirectoryDeleteRecursively | DeeJayBro | |
| 2018-10-26 | svc: Localize the GetInfo enum class to the function itself | Lioncash | |
| Nothing from this enum is intended to be used outside of this function. | |||
| 2018-10-26 | svc: Implement svcGetInfo command 0xF0000002 | Lioncash | |
| This retrieves: if (curr_thread == handle_thread) { result = total_thread_ticks + (hardware_tick_count - last_context_switch_ticks); } else if (curr_thread == handle_thread && sub_id == current_core_index) { result = hardware_tick_count - last_context_switch_ticks; } | |||
| 2018-10-26 | Merge pull request #1430 from DarkLordZach/remove-promote-dir | bunnei | |
| vfs: Remove InterpretAsDirectory and related functions | |||
| 2018-10-25 | Merge pull request #1569 from lioncash/amiibo | bunnei | |
| yuzu/main: Notify user of loading errors with Amiibo data | |||
| 2018-10-25 | ldr: Partially implement LoadNro. | bunnei | |
| - This is an incomplete implementation. It was tested with Super Mario Party. | |||
| 2018-10-25 | process: LoadModule should clear JIT instruction cache. | bunnei | |
| 2018-10-25 | Kernel/Memory: Added a function to first a suitable guest address at which ↵ | bunnei | |
| to allocate a region of a given size. | |||
