| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2015-08-02 | Common: Work around bug in MSVC2015 standard library | Yuri Kunde Schlesner | |
| The char16_t/char32_t implementations aren't present in the library and cause linker errors. This is a known issue that wasn't fixed in VS2015 RTM. | |||
| 2015-08-02 | Handle invalid `Log::Level::Count` | Benjamin Barenblat | |
| Add a case of `Log::Level::Count` to all switch statements that dispatch on `Log::Level`. The case simply asserts `false` and notes the invalid log level. | |||
| 2015-07-31 | Merge pull request #999 from LittleWhite-tb/qt-save-location | Yuri Kunde Schlesner | |
| Save the path leading where the last file have been loaded | |||
| 2015-07-31 | Save the path leading where the last file have been loaded | LittleWhite | |
| I use two variables to save the path for the ROMs and the symbols. Use of QSettings to avoid new member variable to the class. Global settings of QSettings is done in main. | |||
| 2015-07-30 | Merge pull request #1008 from lioncash/pc | bunnei | |
| dyncom: Handle the case where PC is the source register for STR/VSTM/VLDM | |||
| 2015-07-30 | Merge pull request #1006 from yuriks/fb-commit-profile | bunnei | |
| OpenGL: Add a profiler category measuring framebuffer readback | |||
| 2015-07-29 | Merge pull request #1014 from lioncash/unused-warn | bunnei | |
| core: Eliminate some unused variable warnings | |||
| 2015-07-29 | Merge pull request #1011 from lioncash/initializer | bunnei | |
| citra-qt: Adjust initializer list order | |||
| 2015-07-29 | Merge pull request #963 from yuriks/gpu-fixes | bunnei | |
| Misc. GPU vertex loading fixes | |||
| 2015-07-29 | Merge pull request #1013 from lioncash/unused | Yuri Kunde Schlesner | |
| dyncom: Remove an unused variable | |||
| 2015-07-29 | core: Eliminate some unused variable warnings | Lioncash | |
| 2015-07-29 | dyncom: Remove an unused variable | Lioncash | |
| This was used prior to InterpreterTranslate existing. | |||
| 2015-07-29 | Merge pull request #1012 from lioncash/prototype | bunnei | |
| core: Fix missing prototype warnings | |||
| 2015-07-29 | Merge pull request #1010 from lioncash/ref | bunnei | |
| citra-qt: Pass string by const reference | |||
| 2015-07-29 | core: Fix missing prototype warnings | Lioncash | |
| 2015-07-29 | citra-qt: Adjust initializer list order | Lioncash | |
| Silences a warning. | |||
| 2015-07-29 | citra-qt: Pass string by const reference | 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-29 | Merge pull request #1004 from yuriks/msvc-link-opt | bunnei | |
| Enable linker optimizations in MSVC Release builds | |||
| 2015-07-29 | dyncom: Handle the case where PC is the source register for STR/VSTM/VLDM | Lioncash | |
| 2015-07-28 | Merge pull request #1007 from lioncash/pc | bunnei | |
| dyncom: Handle left-operand PC correctly for data-processing ops | |||
| 2015-07-28 | dyncom: Handle left-operand PC correctly for data-processing ops | Lioncash | |
| This is considered deprecated in the ARM manual (using PC as an operand), however, this is still able to be executed on the MPCore (which I'm quite sure would be rare to begin with). | |||
| 2015-07-28 | Merge pull request #899 from zawata/Winsock-Deprecation | bunnei | |
| SOC:U : Fix WinSock function deprecation | |||
| 2015-07-28 | OpenGL: Add a profiler category measuring framebuffer readback | Yuri Kunde Schlesner | |
| 2015-07-28 | Merge pull request #998 from LittleWhite-tb/qt-continue-menu | Yuri Kunde Schlesner | |
| Update Start menu text to match with the real state of the emulator. | |||
| 2015-07-28 | Update Start menu text to match with the real state of the emulator. | LittleWhite | |
| Move start menu text update in ShutdownGame as adviced by neobrain | |||
| 2015-07-28 | Merge pull request #1005 from chinhodado/patch-1 | Yuri Kunde Schlesner | |
| Settings: Fix saving wrong values for input configuration | |||
| 2015-07-28 | Settings: Fix saving wrong values for input configuration | Trung Do | |
| 2015-07-28 | Enable linker optimizations in MSVC Release builds | Yuri Kunde Schlesner | |
| Apparently /DEBUG implicitly disables linker optimizations. This explicitly re-enables them, giving a 40% reduction in binary sizes and a very slight runtime speed improvement. | |||
| 2015-07-28 | Merge pull request #1003 from lioncash/armcruft | bunnei | |
| dyncom: Minor cleanups. | |||
| 2015-07-28 | Merge pull request #873 from jroweboy/input_array | Tony Wasserka | |
| Move input values into an array. | |||
| 2015-07-28 | dyncom: Remove an unnecessary typedef | Lioncash | |
| 2015-07-28 | dyncom: Use enum class for instruction decoding results | Lioncash | |
| 2015-07-27 | Move input values into an array | James Rowe | |
| 2015-07-27 | dyncom: Remove code duplication regarding thumb instructions | Lioncash | |
| 2015-07-27 | dyncom: Migrate exclusive memory access control into armstate | Lioncash | |
| 2015-07-27 | dyncom: Remove duplicated typedef and extern | Lioncash | |
| These are already present in arm_dyncom_dec.h. | |||
| 2015-07-27 | Merge pull request #1001 from lioncash/arm | bunnei | |
| dyncom: Centralize state-related functions. | |||
| 2015-07-26 | Merge pull request #991 from yuriks/globjects | bunnei | |
| OpenGL: Make OpenGL object resource wrappers fully inline | |||
| 2015-07-26 | dyncom: Use std::array for register arrays | Lioncash | |
| 2015-07-26 | dyncom: Use ARMul_State as an object | Lioncash | |
| Gets rid of C-like parameter passing. | |||
| 2015-07-26 | Merge pull request #992 from yuriks/hot-path-debug | bunnei | |
| VideoCore: #ifdef out some debugging routines | |||
| 2015-07-26 | citra-qt/debug_utils: Use lock_guard everywhere | Lectem | |
| unique_lock were being used as lock_guards. Also replaced manual lock/unlock by lock_guard for harmonization. | |||
| 2015-07-26 | citra-qt/command list: Do not recreate a widget after each selection | Lectem | |
| Recreating / replacing a widget is slow since it triggers a layout pass. | |||
| 2015-07-26 | citra-qt/command list: Add mask column | Lectem | |
| 2015-07-26 | citra-qt/command list: monospace font on windows | Lectem | |
| 2015-07-26 | OpenGL: Make OpenGL object resource wrappers fully inline | Yuri Kunde Schlesner | |
| The functions are so simple that having them separate only bloats the code and hinders optimization. | |||
