aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/common
Commit message (Collapse)AuthorAge
* Remove extraneous semicolonsGravatar Lioncash2014-11-18
|
* emu_window: Fix initializer list order.Gravatar Lioncash2014-11-17
| | | | Gets rid of a warning on OSX.
* Use std::u16string for conversion between UTF-8 and UTF-16, FS:USER functionsGravatar archshift2014-11-12
|
* Renamed souce files of services to match port namesGravatar Gareth Poole2014-10-29
|
* Add `override` keyword through the code.Gravatar Yuri Kunde Schlesner2014-10-26
| | | | This was automated using `clang-modernize`.
* Fix compile errors in ClangGravatar Yuri Kunde Schlesner2014-10-26
|
* Merge pull request #150 from lioncash/typoGravatar Tony Wasserka2014-10-25
|\ | | | | bit_field: Fix a typo in the sample usage.
| * bit_field: Fix a typo in the sample usage.Gravatar Lioncash2014-10-25
| |
* | Removed uses of raw c-string manipulation functions.Gravatar archshift2014-10-23
|/
* Merge pull request #133 from archshift/sdmc-enabledGravatar bunnei2014-10-23
|\ | | | | Use config files to store whether SDMC is enabled or not, auto-create SDMC dir.
* | Use std sized types instead of platform specific typedefsGravatar Yuri Kunde Schlesner2014-10-22
| |
| * Common: Return from CreateFullPath early if the directory creation failsGravatar archshift2014-10-22
|/
* Merge pull request #108 from archshift/configGravatar bunnei2014-10-07
|\ | | | | Configuration files
| * Added configuration file system.Gravatar archshift2014-10-07
| | | | | | | | 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.Gravatar Emmanuel Gil Peyrot2014-10-06
| | | | | | | | Core: Fix the SDMC Directory implementation to make blargSnes work.
* | Fix warnings in core and commonGravatar Lioncash2014-09-28
|/
* Merge pull request #118 from lioncash/chunk-fileGravatar bunnei2014-09-22
|\ | | | | chunk_file: General cleanup
| * chunk_file: General cleanupGravatar Lioncash2014-09-21
| | | | | | | | | | - Remove unnecessary ifdefs - Remove commented out code. Can be retrieved later if needed.
* | Use the citra user path for the sdmc directoryGravatar archshift2014-09-21
|/
* Common: Rename the File namespace to FileUtil, to match the filename and ↵Gravatar Emmanuel Gil Peyrot2014-09-17
| | | | prevent collisions.
* Common: Return the number of items read/written in IOFile’s methods ↵Gravatar Emmanuel Gil Peyrot2014-09-17
| | | | instead of a boolean.
* Added support for multiple input device types for KeyMap and connected Qt.Gravatar Kevin Hartman2014-09-12
|
* Initial HID PAD work, with GLFW only.Gravatar Kevin Hartman2014-09-11
|
* Merge pull request #99 from archshift/ext-checkGravatar bunnei2014-09-11
|\ | | | | loader.cpp: improved file extension checking, made Upper/LowerStr useful, moved string_util into Common namespace
* \ Merge pull request #103 from archshift/pruneGravatar bunnei2014-09-10
|\ \ | | | | | | Prune redundant includes
* \ \ Merge pull request #104 from archshift/removalGravatar bunnei2014-09-09
|\ \ \ | | | | | | | | Removed fixed_size_queue.h
* \ \ \ Merge pull request #101 from lioncash/inf-loopGravatar bunnei2014-09-09
|\ \ \ \ | | | | | | | | | | Common: Fix a potential infinite loop in StringUtil's ReplaceAll
| | * | | Removed fixed_size_queue.hGravatar archshift2014-09-08
| | | | | | | | | | | | | | | | | | | | It's unused and doesn't look like it compiles anyway :/
| | | * | common: Prune all redundant includesGravatar archshift2014-09-08
| | |/ /
| | | * Moved common_types::Rect from common to Common namespaceGravatar archshift2014-09-08
| | | |
| | | * Added string_util to common, small changes in loader.cppGravatar archshift2014-09-08
| | | |
| | | * loader.cpp: improved file extension checking, made Upper/LowerStr usefulGravatar archshift2014-09-08
| | |/ | | | | | | | | | Instead of forcibly taking the last 4 characters, it now finds the last extension separator (the period) and takes a substr of its location.
* | / Common: Remove HAVE_CXX11_SYNTAX define from Common.hGravatar Lioncash2014-09-08
| |/ |/|
| * Common: Fix a potential infinite loop in StringUtil's ReplaceAllGravatar Lioncash2014-09-08
|/
* Removed common/std_xyz, instead using the std headerGravatar archshift2014-09-07
|
* Removed common/atomic, instead using std::atomicGravatar archshift2014-09-02
|
* Remove hand-crafted Visual Studio solution.Gravatar Yuri Kunde Schlesner2014-09-01
|
* Avoid LOGGING redefinition warnings.Gravatar Yuri Kunde Schlesner2014-09-01
|
* CMake cleanupGravatar Yuri Kunde Schlesner2014-09-01
| | | | | | | | 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/clampGravatar bunnei2014-08-21
|\ | | | | Common: Add a clamp function to math_utils.h
| * Common: Add a clamp function to math_utils.hGravatar Lioncash2014-08-19
| |
* | Common: Get rid of an unnecessary forward declaration in symbols.hGravatar Lioncash2014-08-18
|/
* Common: Don't return a reference to a string when calling GetName in symbols.cppGravatar Lioncash2014-08-18
| | | | Returning a copy of the string is what was likely meant to be done.
* Merge pull request #52 from lioncash/memoryGravatar bunnei2014-08-17
|\ | | | | Common: Correctly set ptr to null if mmap fails in memory_util
* \ Merge pull request #48 from linkmauve/masterGravatar bunnei2014-08-17
|\ \ | | | | | | Replace insecure temporary file creation with devshm.
| | * Common: Correctly set ptr to null if mmap fails in memory_utilGravatar Lioncash2014-08-17
| | | | | | | | | | | | On POSIX systems mmap will return MAP_FAILED ((void*)-1) instead of a null pointer.
* | | Common: Move remaining C header includes over to their C++ equivalentGravatar Lioncash2014-08-17
| | |
* | | Common: Move header guards over to pragma onceGravatar Lioncash2014-08-17
| |/ |/| | | | | Also replaced C headers with the C++ equivalent ones
| * mem_arena: Replace insecure temporary file creation with devshm, importing ↵Gravatar Emmanuel Gil Peyrot2014-08-16
|/ | | | Dolphin’s code.
* Simplified if-tree in extended_trace.cppGravatar archshift2014-08-12
|