| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Massive removal of unused modules | 2018-01-12 | 1 | -175/+0 | |
| | | |||||
| * | telemetry: Log frontend type. | 2017-08-25 | 1 | -0/+2 | |
| | | |||||
| * | Set global definition WIN32_LEAN_AND_MEAN (#2807) | 2017-06-24 | 1 | -0/+3 | |
| | | | | Set definition WIN32_LEAN_AND_MEAN to avoid windows.h including a lot of libs that are usually not used. | ||||
| * | Edit Citra URLs (#2728) | 2017-06-03 | 1 | -1/+1 | |
| | | |||||
| * | Remove some unnecessary inclusions of video_core.h | 2017-05-27 | 1 | -1/+0 | |
| | | |||||
| * | citra: add missing control paths for ResultStatus on rom load. Fix warning ↵ | 2017-01-29 | 1 | -0/+20 | |
| | | | | | about unhandled enumeration values on OSX | ||||
| * | Address clang-format issues. | 2016-12-21 | 1 | -3/+3 | |
| | | |||||
| * | core: Consolidate core and system state, remove system module & cleanups. | 2016-12-21 | 1 | -2/+1 | |
| | | |||||
| * | core: Consolidate top-level system state into a singleton. | 2016-12-21 | 1 | -21/+14 | |
| | | |||||
| * | Support mingw cross-compile | 2016-12-05 | 1 | -1/+1 | |
| | | |||||
| * | Kernel/Loader: Grab the system mode from the NCCH ExHeader. | 2016-11-27 | 1 | -6/+6 | |
| | | | | | | | | 3dsx and elf files default to system mode 2 (96MB allocated to the application). This allows Home Menu to boot without modifications. Closes #1849 | ||||
| * | Kernel/Loader: Grab the system mode from the NCCH ExHeader. | 2016-11-19 | 1 | -4/+11 | |
| | | | | | | | | 3dsx and elf files default to system mode 2 (96MB allocated to the application). This allows Home Menu to boot without modifications. Closes #1849 | ||||
| * | Remove empty newlines in #include blocks. | 2016-09-21 | 1 | -5/+2 | |
| | | | | | | | | This makes clang-format useful on those. Also add a bunch of forgotten transitive includes, which otherwise prevented compilation. | ||||
| * | Manually tweak source formatting and then re-run clang-format | 2016-09-18 | 1 | -4/+6 | |
| | | |||||
| * | Sources: Run clang-format on everything. | 2016-09-18 | 1 | -21/+18 | |
| | | |||||
| * | Fix boot_filename encode on Windows | 2016-06-08 | 1 | -0/+22 | |
| | | |||||
| * | CitraQt: Simplify the game list loader code | 2016-05-21 | 1 | -1/+1 | |
| | | |||||
| * | Loader, Frontends: Refactor loader creation and game loading | 2016-05-21 | 1 | -1/+7 | |
| | | | | | | This allows frontends to keep a single loader and use it multiple times e.g. for code loading and SMDH parsing. | ||||
| * | SDL2 Frontend: Use argv[0], add a --version, and reorder options. | 2016-04-20 | 1 | -9/+20 | |
| | | |||||
| * | Use Settings::Apply in SDL frontend | 2016-04-11 | 1 | -5/+4 | |
| | | |||||
| * | Default to settings from ini for gdbstub | 2016-04-06 | 1 | -6/+6 | |
| | | |||||
| * | Adopted WinterMute's gdbstub changes | 2016-04-06 | 1 | -4/+21 | |
| | | | | | | This fixes the comments left on the PR (whitespace, SO_REUSEADDR, comment changes). | ||||
| * | Common: Remove Common::make_unique, use std::make_unique | 2016-04-05 | 1 | -2/+2 | |
| | | |||||
| * | citra: Shutdown cleanly if ROM load fails | 2016-03-15 | 1 | -8/+6 | |
| | | |||||
| * | Dependencies: Remove GLFW, Add SDL2 | 2016-03-02 | 1 | -2/+2 | |
| | | | | | | | | | | | | | | | citra: Remove GLFW, Add SDL2 FindSDL2: Do not CACHE SDL2_* variables if library is not found EmuWindow_SDL2: Set minimal client area at initialisation time EmuWindow_SDL2: Corrections EmuWindow_SDL2: Fix no decorations on startup on OS X cmake: windows_copy_files | ||||
| * | Handle changes pointed out in comments on PR | 2015-10-22 | 1 | -2/+1 | |
| | | |||||
| * | Toggle use_gdbstub in citra GLFW | 2015-10-04 | 1 | -0/+1 | |
| |\ | |||||
| | * | Implement gdbstub | 2015-09-19 | 1 | -0/+3 | |
| | | | |||||
| * | | Implement gdbstub | 2015-10-04 | 1 | -0/+3 | |
| |/ | |||||
| * | Integrate the MicroProfile profiling library | 2015-08-24 | 1 | -0/+7 | |
| | | | | | | This brings goodies such as a configurable user interface and multi-threaded timeline view. | ||||
| * | Shader: Initial implementation of x86_x64 JIT compiler for Pica vertex shaders. | 2015-08-15 | 1 | -0/+1 | |
| | | | | | | - Config: Add an option for selecting to use shader JIT or interpreter. - Qt: Add a menu option for enabling/disabling the shader JIT. | ||||
| * | Implement new argument parsing using getopt and add the corresponding ↵ | 2015-07-12 | 1 | -2/+38 | |
| | | | | | library to externals | ||||
| * | Citra: Fix the includes a bit, thanks to include-what-you-use. | 2015-06-28 | 1 | -3/+1 | |
| | | |||||
| * | OpenGL renderer | 2015-05-22 | 1 | -0/+4 | |
| | | |||||
| * | Common: Remove async logging | 2015-05-12 | 1 | -6/+0 | |
| | | | | | | | | | | | | It provided a large increase in complexity of the logging system while having a negligible performance impact: the usage patterns of the ring buffer meant that each log contended with the logging thread, causing it to effectively act as a synchronous extra buffering. Also removed some broken code related to filtering of subclasses which was broken since it was introduced. (Which means no one ever used that feature anyway, since, 8 months later, no one ever complained.) | ||||
| * | Common: Remove common.h | 2015-05-07 | 1 | -1/+1 | |
| | | |||||
| * | Common: Remove many unnecessary cross-platform compatibility macros | 2015-05-06 | 1 | -1/+1 | |
| | | |||||
| * | Logging: check for filter before sending to the queue, to skip all heavy ↵ | 2015-03-06 | 1 | -1/+2 | |
| | | | | | formatting on the other thread. | ||||
| * | Frontends: Shutdown core when emulation is stopped | 2015-01-04 | 1 | -0/+2 | |
| | | |||||
| * | License change | 2014-12-20 | 1 | -1/+1 | |
| | | |||||
| * | Add configurable per-class log filtering | 2014-12-13 | 1 | -1/+4 | |
| | | |||||
| * | Convert old logging calls to new logging macros | 2014-12-13 | 1 | -2/+2 | |
| | | |||||
| * | New logging system | 2014-12-13 | 1 | -5/+11 | |
| | | |||||
| * | Remove trailing spaces in every file but the ones imported from SkyEye, AOSP ↵ | 2014-11-19 | 1 | -1/+1 | |
| | | | | | or generated | ||||
| * | Add support for disabling log from settings | 2014-11-03 | 1 | -0/+4 | |
| | | |||||
| * | Implemented graceful closing of the GLFW window, along with emulation. | 2014-10-17 | 1 | -1/+1 | |
| | | |||||
| * | Added configuration file system. | 2014-10-07 | 1 | -3/+6 | |
| | | | | | Uses QSettings on citra-qt, and inih on citra-cli. | ||||
| * | Core: Refactor core to use only one function for execution. | 2014-08-30 | 1 | -1/+3 | |
| | | | | | | | Core: Cleaned up comment to be more readable. Citra: Changed loop to be more readable. | ||||
| * | Removed unused citra.h | 2014-08-19 | 1 | -2/+0 | |
| | | |||||
| * | Loader: Implemented AppLoader interface for abstracting application loading. | 2014-06-24 | 1 | -15/+8 | |
| | | | | | | | | | | | | | | | | | | | - Various cleanups/refactorings to Loader, ELF, and NCCH modules. - Added AppLoader interface to ELF and NCCH. - Updated Qt/GLFW frontends to check AppLoader ResultStatus. NCCH: Removed extra qualification typos. Loader: Removed unnecessary #include's. NCCH: Improved readability of memcmp statements. NCCH: Added missing space. Elf: Removed unnecessary usage of unique_ptr. Loader: Removed unnecessary usage of unique_ptr. | ||||