summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2017-03-17citra-qt: release all buttons when render window focus is lostwwylele
credit to @Hawkheart for the original idea
2017-03-17Merge pull request #2497 from wwylele/input-2bunnei
Refactor input emulation & add SDL gamepad support
2017-03-16Merge pull request #2618 from wwylele/log-less-filenamebunnei
Reduce host file name and path logging
2017-03-15Merge pull request #2620 from FernandoS27/syscore_errorbunnei
Refined thread launch on syscore error messages
2017-03-15Merge pull request #2625 from wwylele/hash-console-uniquebunnei
cfg: correctly implement GenHashConsoleUnique
2017-03-12common/cpu_detect: Add missing include and fix namespace scopeYuri Kunde Schlesner
2017-03-12cfg: implement GenHashConsoleUniquewwylele
2017-03-11file_util: Log when using local user directorywwylele
2017-03-09Refined thread launch on syscore error messagesFernando Sahmkow
2017-03-08file_sys: lower log level for setting host pathwwylele
2017-03-08file_util: lower logging level for harmless caseswwylele
2017-03-08loader/ncch: less verbose log for loading game list. only log program ID ↵wwylele
when booting
2017-03-08loader: lower file name logging levelwwylele
2017-03-02qt/config_input: don't connect for null buttonwwylele
2017-03-01citra: update default ini with new input systemwwylele
2017-03-01Input: remove unused stuff & clean upwwylele
1. removed zl, zr and c-stick from HID::PadState. They are handled by IR, not HID 2. removed button handling in EmuWindow 3. removed key_map 4. cleanup #include
2017-03-01Qt: rework input configuration for new input systemwwylele
2017-03-01InputCommon: add SDL joystick supportwwylele
2017-03-01InputCommon: add AnalogFromButtonwwylele
2017-03-01InputCommon: add Keyboardwwylele
2017-03-01HID: use AnalogDevicewwylele
2017-03-01HID: use ButtonDevicewwylele
2017-03-01Input: add device and factory templatewwylele
2017-03-01Common: add ParamPackagewwylele
2017-02-27Timer: restore missing signaled=true from #2421wwylele
2017-02-27Merge pull request #2594 from wwylele/ir-separatebunnei
IR: separate functions of each port to their own files
2017-02-27Fix log entry in timer::signal (#2600)B3n30
2017-02-26Doxygen: Amend minor issues (#2593)Mat M
Corrects a few issues with regards to Doxygen documentation, for example: - Incorrect parameter referencing. - Missing @param tags. - Typos in @param tags. and a few minor other issues.
2017-02-26Merge pull request #2587 from yuriks/status-barYuri Kunde Schlesner
Replace built-in Profiler with indicators in status bar
2017-02-26PerfStats: Re-order and document members betterYuri Kunde Schlesner
2017-02-26Qt: Tweak status bar stylingYuri Kunde Schlesner
2017-02-26Qt: Increase status bar update interval to 2 secondsYuri Kunde Schlesner
2017-02-26Core: Re-write frame limiterYuri Kunde Schlesner
Now based on std::chrono, and also works in terms of emulated time instead of frames, so we can in the future frame-limit even when the display is disabled, etc. The frame limiter can also be enabled along with v-sync now, which should be useful for those with displays running at more than 60 Hz.
2017-02-26Core: Make PerfStats internally lockedYuri Kunde Schlesner
More ergonomic to use and will be required for upcoming changes.
2017-02-26Qt: Add tooltips to status bar displaysYuri Kunde Schlesner
2017-02-26Qt: Don't show fractional figures in the status barYuri Kunde Schlesner
They're not very important and this makes the display changes less often, making it less distracting.
2017-02-26Remove built-in (non-Microprofile) profilerYuri Kunde Schlesner
2017-02-26PerfStats: Add method to get the instantaneous time ratioYuri Kunde Schlesner
2017-02-26Add performance statistics to status barYuri Kunde Schlesner
2017-02-26SynchronizedWrapper: Add Lock convenience methodYuri Kunde Schlesner
2017-02-26Qt: Add (empty) status barYuri Kunde Schlesner
2017-02-26Core: Remove unnecessary include in thread.hYuri Kunde Schlesner
2017-02-26IR: separate functions of each port to their own fileswwylele
2017-02-25Merge pull request #2569 from wwylele/wrap-unwrapbunnei
APT: implemented Wrap and Unwrap
2017-02-24Merge pull request #2421 from Subv/timersYuri Kunde Schlesner
Timers: Immediately signal the timer if it was started with an initial value of 0
2017-02-23Use QFileSystemWatcher to reload the game list when a change is detected. ↵James Rowe
(#2555) * Added a refresh game directory option to the file menu * Make the game list watcher recursive and have it start watching from the initial load * Rework game list watcher to be thread safe * Fix code style issues
2017-02-23Merge pull request #2441 from jroweboy/titlebarbunnei
Gui: Change title bar to include build name
2017-02-23Gui: Change title bar to include build nameJames Rowe
Nightly builds now have "Citra Nightly" in the titlebar Bleeding edge builds now have "Citra Bleeding Edge" in the titlebar
2017-02-22[UI] Modify recursive scanning label (#2589)Anthony
2017-02-21Timers: Return an error when calling SetTimer with negative timeouts.Subv