summaryrefslogtreecommitdiff
path: root/src/common (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Restore the original console color after logging a message.Gravatar Yuri Kunde Schlesner2014-12-142-13/+25
| | | | Fixes #277
* Remove old logging systemGravatar Yuri Kunde Schlesner2014-12-136-850/+2
|
* Add configurable per-class log filteringGravatar Yuri Kunde Schlesner2014-12-135-3/+205
|
* Convert old logging calls to new logging macrosGravatar Yuri Kunde Schlesner2014-12-138-71/+94
|
* Implement text path trimming for shorter paths.Gravatar Yuri Kunde Schlesner2014-12-133-1/+53
|
* Re-add coloring to the console logging output.Gravatar Yuri Kunde Schlesner2014-12-131-0/+50
|
* New logging systemGravatar Yuri Kunde Schlesner2014-12-1311-66/+716
|
* Add SCOPE_EXIT macro to conveniently execute cleanup actionsGravatar Yuri Kunde Schlesner2014-12-132-0/+38
|
* Added missing include in common_funcs.hGravatar Yuri Kunde Schlesner2014-12-131-0/+1
|
* Remove redundant include from common_funcs.hGravatar Yuri Kunde Schlesner2014-12-131-2/+0
|
* Merge pull request #267 from bunnei/apt-shared-fontGravatar bunnei2014-12-123-26/+6
|\ | | | | APT shared font loading
| * APT_U: Added GetSharedFont service function.Gravatar bunnei2014-12-121-0/+3
| |
| * Common: Add "sysdata" to GetUserPath and cleanup.Gravatar bunnei2014-12-123-26/+3
| |
* | Merge pull request #261 from neobrain/boostGravatar Tony Wasserka2014-12-121-3/+3
|\ \ | |/ |/| Add Boost as a submodule and add some minor cleanups using Boost.Range
| * StringUtil: Perform some minimal cleanup.Gravatar Tony Wasserka2014-12-071-3/+3
| |
* | Explicitly specify LE strings to iconv, fixes paths in Steel DiverGravatar archshift2014-12-091-2/+2
| |
* | Remove unused NDMA moduleGravatar Yuri Kunde Schlesner2014-12-092-2/+0
| |
* | Some code cleanup.Gravatar Tony Wasserka2014-12-091-0/+2
| |
* | Fix some headers to include their dependencies properly.Gravatar Tony Wasserka2014-12-092-0/+7
|/
* Change NULLs to nullptrs.Gravatar Rohit Nirmal2014-12-0317-92/+92
|
* Remove unused includes to common/thread.hGravatar Emmanuel Gil Peyrot2014-11-251-1/+0
|
* Remove tabs in all files except in skyeye imports and in generated GL codeGravatar Emmanuel Gil Peyrot2014-11-193-100/+100
|
* Remove trailing spaces in every file but the ones imported from SkyEye, AOSP ↵Gravatar Emmanuel Gil Peyrot2014-11-1923-160/+160
| | | | or generated
* Merge pull request #165 from neobrain/viewport-scalingGravatar bunnei2014-11-184-38/+101
|\ | | | | Stretch emulation output to render window and be display density independent
| * EmuWindow: Add some explicit documentation and set proper minimal client ↵Gravatar Tony Wasserka2014-11-181-2/+4
| | | | | | | | area size.
| * EmuWindow: Add a TODO.Gravatar Tony Wasserka2014-11-181-0/+1
| | | | | | | | | | | | Implementing this function currently is not critical, as we don't perform any configuration changes, yet. However, the interface is a good starting point for adding this functionality.
| * MathUtil: Make Rectangle work with unsigned types.Gravatar Tony Wasserka2014-11-181-4/+5
| |
| * EmuWindow: Better document the purpose of OnMinimalClientAreaChangeRequest.Gravatar Tony Wasserka2014-11-181-0/+7
| |
| * EmuWindow: Remove window title getters/setters.Gravatar Tony Wasserka2014-11-181-16/+1
| | | | | | | | | | The window title is none of the emulation core's business. The GUI code is free to put whatever it wants there. Providing properly thread-safe window title getters and setters is a mess anyway.
| * EmuWindow: Add documentation.Gravatar Tony Wasserka2014-11-181-18/+57
| |
| * EmuWindow: Add support for specifying minimal client area sizes.Gravatar Tony Wasserka2014-11-181-8/+26
| |
| * Fixup EmuWindow interface and implementations thereof.Gravatar Tony Wasserka2014-11-181-28/+33
| |
| * Viewport scaling and display density independenceGravatar Kevin Hartman2014-11-181-2/+5
| | | | | | | | | | The view is scaled to be as large as possible, without changing the aspect, within the bounds of the window. On "retina" displays, or other displays where window units != pixels, the view should no longer draw incorrectly.
| * Add a GUI logging channel.Gravatar Tony Wasserka2014-11-182-0/+2
| | | | | | | | Replace asserts with _dbg_assert_.
* | Remove extraneous semicolonsGravatar Lioncash2014-11-182-2/+2
|/
* emu_window: Fix initializer list order.Gravatar Lioncash2014-11-171-2/+2
| | | | Gets rid of a warning on OSX.
* Use std::u16string for conversion between UTF-8 and UTF-16, FS:USER functionsGravatar archshift2014-11-122-51/+115
|
* Renamed souce files of services to match port namesGravatar Gareth Poole2014-10-291-1/+1
|
* Add `override` keyword through the code.Gravatar Yuri Kunde Schlesner2014-10-262-3/+3
| | | | This was automated using `clang-modernize`.
* Fix compile errors in ClangGravatar Yuri Kunde Schlesner2014-10-261-1/+0
|
* Merge pull request #150 from lioncash/typoGravatar Tony Wasserka2014-10-251-1/+1
|\ | | | | bit_field: Fix a typo in the sample usage.
| * bit_field: Fix a typo in the sample usage.Gravatar Lioncash2014-10-251-1/+1
| |
* | Removed uses of raw c-string manipulation functions.Gravatar archshift2014-10-234-21/+10
|/
* Merge pull request #133 from archshift/sdmc-enabledGravatar bunnei2014-10-231-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 failsGravatar archshift2014-10-221-2/+4
| |
* | Use std sized types instead of platform specific typedefsGravatar Yuri Kunde Schlesner2014-10-222-32/+12
|/
* Merge pull request #108 from archshift/configGravatar bunnei2014-10-076-69/+73
|\ | | | | Configuration files
| * Added configuration file system.Gravatar archshift2014-10-076-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.Gravatar Emmanuel Gil Peyrot2014-10-062-0/+53
| | | | | | | | Core: Fix the SDMC Directory implementation to make blargSnes work.
* | Fix warnings in core and commonGravatar Lioncash2014-09-283-15/+5
|/