| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Merge pull request #133 from archshift/sdmc-enabled | 2014-10-23 | 1 | -2/+4 | |
| |\ | | | | | Use config files to store whether SDMC is enabled or not, auto-create SDMC dir. | ||||
| | * | Common: Return from CreateFullPath early if the directory creation fails | 2014-10-22 | 1 | -2/+4 | |
| | | | |||||
| * | | Use std sized types instead of platform specific typedefs | 2014-10-22 | 2 | -32/+12 | |
| |/ | |||||
| * | Merge pull request #108 from archshift/config | 2014-10-07 | 6 | -69/+73 | |
| |\ | | | | | Configuration files | ||||
| | * | Added configuration file system. | 2014-10-07 | 6 | -69/+73 | |
| | | | | | | | | | Uses QSettings on citra-qt, and inih on citra-cli. | ||||
| * | | Common: Add a helper function to generate a 8.3 filename from a long one. | 2014-10-06 | 2 | -0/+53 | |
| | | | | | | | | | Core: Fix the SDMC Directory implementation to make blargSnes work. | ||||
| * | | Fix warnings in core and common | 2014-09-28 | 3 | -15/+5 | |
| |/ | |||||
| * | Merge pull request #118 from lioncash/chunk-file | 2014-09-22 | 1 | -244/+0 | |
| |\ | | | | | chunk_file: General cleanup | ||||
| | * | chunk_file: General cleanup | 2014-09-21 | 1 | -244/+0 | |
| | | | | | | | | | | | - Remove unnecessary ifdefs - Remove commented out code. Can be retrieved later if needed. | ||||
| * | | Use the citra user path for the sdmc directory | 2014-09-21 | 3 | -0/+4 | |
| |/ | |||||
| * | Common: Rename the File namespace to FileUtil, to match the filename and ↵ | 2014-09-17 | 4 | -25/+25 | |
| | | | | | prevent collisions. | ||||
| * | Common: Return the number of items read/written in IOFile’s methods ↵ | 2014-09-17 | 1 | -8/+20 | |
| | | | | | instead of a boolean. | ||||
| * | Added support for multiple input device types for KeyMap and connected Qt. | 2014-09-12 | 5 | -40/+61 | |
| | | |||||
| * | Initial HID PAD work, with GLFW only. | 2014-09-11 | 4 | -0/+77 | |
| | | |||||
| * | Merge pull request #99 from archshift/ext-check | 2014-09-11 | 12 | -40/+44 | |
| |\ | | | | | loader.cpp: improved file extension checking, made Upper/LowerStr useful, moved string_util into Common namespace | ||||
| | * | Moved common_types::Rect from common to Common namespace | 2014-09-08 | 1 | -1/+1 | |
| | | | |||||
| | * | Added string_util to common, small changes in loader.cpp | 2014-09-08 | 11 | -32/+39 | |
| | | | |||||
| | * | loader.cpp: improved file extension checking, made Upper/LowerStr useful | 2014-09-08 | 2 | -12/+9 | |
| | | | | | | | | | Instead of forcibly taking the last 4 characters, it now finds the last extension separator (the period) and takes a substr of its location. | ||||
| * | | Merge pull request #103 from archshift/prune | 2014-09-10 | 10 | -34/+3 | |
| |\ \ | | | | | | | Prune redundant includes | ||||
| | * | | common: Prune all redundant includes | 2014-09-08 | 10 | -34/+3 | |
| | |/ | |||||
| * | | Merge pull request #104 from archshift/removal | 2014-09-09 | 2 | -71/+0 | |
| |\ \ | | | | | | | Removed fixed_size_queue.h | ||||
| | * | | Removed fixed_size_queue.h | 2014-09-08 | 2 | -71/+0 | |
| | |/ | | | | | | | It's unused and doesn't look like it compiles anyway :/ | ||||
| * | | Merge pull request #101 from lioncash/inf-loop | 2014-09-09 | 1 | -3/+8 | |
| |\ \ | | | | | | | Common: Fix a potential infinite loop in StringUtil's ReplaceAll | ||||
| | * | | Common: Fix a potential infinite loop in StringUtil's ReplaceAll | 2014-09-08 | 1 | -3/+8 | |
| | |/ | |||||
| * / | Common: Remove HAVE_CXX11_SYNTAX define from Common.h | 2014-09-08 | 1 | -6/+0 | |
| |/ | |||||
| * | Removed common/std_xyz, instead using the std header | 2014-09-07 | 7 | -856/+6 | |
| | | |||||
| * | Removed common/atomic, instead using std::atomic | 2014-09-02 | 4 | -198/+0 | |
| | | |||||
| * | Remove hand-crafted Visual Studio solution. | 2014-09-01 | 4 | -453/+0 | |
| | | |||||
| * | Avoid LOGGING redefinition warnings. | 2014-09-01 | 1 | -0/+2 | |
| | | |||||
| * | CMake cleanup | 2014-09-01 | 1 | -7/+16 | |
| | | | | | | | | | Several cleanups to the buildsystem: - Do better factoring of common libs between platforms. - Add support to building on Windows. - Remove Qt4 support. - Re-sort file lists and add missing headers. | ||||
| * | Merge pull request #58 from lioncash/clamp | 2014-08-21 | 1 | -0/+7 | |
| |\ | | | | | Common: Add a clamp function to math_utils.h | ||||
| | * | Common: Add a clamp function to math_utils.h | 2014-08-19 | 1 | -0/+7 | |
| | | | |||||
| * | | Common: Get rid of an unnecessary forward declaration in symbols.h | 2014-08-18 | 1 | -2/+0 | |
| |/ | |||||
| * | Common: Don't return a reference to a string when calling GetName in symbols.cpp | 2014-08-18 | 2 | -2/+2 | |
| | | | | | Returning a copy of the string is what was likely meant to be done. | ||||
| * | Merge pull request #52 from lioncash/memory | 2014-08-17 | 1 | -5/+8 | |
| |\ | | | | | Common: Correctly set ptr to null if mmap fails in memory_util | ||||
| | * | Common: Correctly set ptr to null if mmap fails in memory_util | 2014-08-17 | 1 | -5/+8 | |
| | | | | | | | | | On POSIX systems mmap will return MAP_FAILED ((void*)-1) instead of a null pointer. | ||||
| * | | Merge pull request #48 from linkmauve/master | 2014-08-17 | 1 | -24/+23 | |
| |\ \ | | | | | | | Replace insecure temporary file creation with devshm. | ||||
| | * | | mem_arena: Replace insecure temporary file creation with devshm, importing ↵ | 2014-08-16 | 1 | -24/+23 | |
| | |/ | | | | | | | Dolphin’s code. | ||||
| * | | Common: Move remaining C header includes over to their C++ equivalent | 2014-08-17 | 8 | -21/+20 | |
| | | | |||||
| * | | Common: Move header guards over to pragma once | 2014-08-17 | 33 | -146/+41 | |
| |/ | | | | Also replaced C headers with the C++ equivalent ones | ||||
| * | Simplified if-tree in extended_trace.cpp | 2014-08-12 | 1 | -13/+9 | |
| | | |||||
| * | Merge pull request #41 from archshift/itr | 2014-08-12 | 2 | -78/+67 | |
| |\ | | | | | Changed iterators to use auto, many of which using range-based loops | ||||
| | * | break_points.cpp: return directly from conditionals | 2014-08-12 | 1 | -6/+2 | |
| | | | |||||
| | * | break_points: cleaned up, added `find_if`s | 2014-08-12 | 2 | -59/+51 | |
| | | | |||||
| | * | Changed iterators to use auto, some of which using range-based loops | 2014-08-11 | 1 | -27/+28 | |
| | | | |||||
| * | | Remove the fancy RegisterSet class introduced in 4c2bff61e. | 2014-08-12 | 3 | -165/+0 | |
| |/ | | | | | While it was some nice and fancy template usage, it ultimately had many practical issues regarding length of involved expressions under regular usage as well as common code completion tools not being able to handle the structures. Instead, we now use a more conventional approach which is a lot more clean to use. | ||||
| * | Use pthread_set_name_np() on OpenBSD. | 2014-08-07 | 1 | -1/+3 | |
| | | |||||
| * | RegisterSet: Simplify code by using structs for register definition instead ↵ | 2014-07-23 | 1 | -6/+8 | |
| | | | | | of unions. | ||||
| * | [build] Search for the git binary in the default msysgit install dir | 2014-07-19 | 1 | -1/+8 | |
| | | | | | | | | | | The Git for Windows installer doesn't add the Git binaries to the path by default. (Due to risk of conflicts with built-in windows commands.) Unless you have configured your system specially this causes the scm_rev_gen.js script to fail to find Git. Added more paths to the script so that it searches in the default msysgit installation directory, eliminating the need to set the PATH for most environments. | ||||
| * | BitField: Cast enum values to proper integer type. | 2014-07-16 | 1 | -1/+1 | |
| | | |||||