summaryrefslogtreecommitdiff
path: root/src/citra_qt
AgeCommit message (Collapse)Author
2016-02-04Add check before closure when emulation is runningLittleWhite
Implement confirmation in a specific function Fix typos and coding style Coding convention
2016-01-06Change default gameListRootDir from "" to "."archshift
Not much thought went into that one...
2016-01-03Merge pull request #1330 from archshift/add-defaultsbunnei
Gamelist: supply default settings for QSettings config
2016-01-01Gamelist: supply default settings for QSettings configarchshift
2015-12-29core: Use unique_ptr for holding the interpreter instancesLioncash
2015-11-27Refactor ScanDirectoryTreeAndCallback to separate errors and retvalsarchshift
ScanDirectoryTreeAndCallback, before this change, coupled error/return codes and actual return values (number of entries found). This caused confusion and difficulty interpreting the precise way the function worked. Supersedes, and closes #1255.
2015-11-11Merge pull request #1122 from polaris-/gdbstubbunnei
gdbstub implementation
2015-10-22Handle changes pointed out in comments on PRpolaris-
2015-10-20change file path encoding to Local8bit()wwylele
to support non-latin characters
2015-10-20Merge pull request #1207 from kemenaran/persist-citra-settings-in-qtbunnei
citra-qt: save hardware-rendering and shaders-jit settings
2015-10-18citra-qt: persist hardware-rendering and shaders-jit settingsPierre de La Morinerie
Before this changing these settings from the GUI would apply the settings, but they were reseted to the default values when exiting citra.
2015-10-14citra-qt: Add icon to Mac appPierre de La Morinerie
Previously the Mac app didn't have any icon.
2015-10-09CitraQt, SkyEye, Loader, VideoCore: Remove newlines in LOG_* calls.Emmanuel Gil Peyrot
The LOG_* function itself already appends one.
2015-10-07Merge pull request #1189 from archshift/game-list-toggle-windowbunnei
Game list: propely hide on toggling window mode
2015-10-06Silence -Wsign-compare warnings.Rohit Nirmal
2015-10-06Game list: propely hide on toggling window modearchshift
Properly hides the game list upon toggling from external window mode to single window mode. Previously, both the game list and the render window would have been shown at the same time upon toggling.
2015-10-04citra-qt: Fix mouse events coordinates on high-DPI screensPierre de La Morinerie
2015-10-04citra-qt: Enable high-DPI widgets on Mac appPierre de La Morinerie
The OS will render the widgets using the system screen DPI (instead of being locked at @1x resolution). This has no impact on the existing high-DPI rendering code in Citra, which means that the resolution of the emulated content is increased to the real number of pixels, as on other platforms.
2015-10-04citra-qt: Use custom Info.plist for Mac buildsPierre de La Morinerie
Instead of letting CMake re-generate an automatic Info.plist file on every build, use our own. This allows greater control on the application bundle settings.
2015-10-04Implement gdbstubpolaris-
2015-10-01Merge pull request #1095 from archshift/game-listbunnei
Initial implementation of a game list
2015-10-01Game list: save and load column sizes, sort order, to QSettingsarchshift
2015-10-01Add menu item for selecting the game list folderarchshift
2015-10-01Initial implementation of a game listarchshift
2015-10-01Add helper function for creating a readable byte size string.archshift
2015-10-01Don't show render window until a game is startedarchshift
2015-09-24Fix for the refresh issue when no rendering is doneLittleWhite
2015-09-18citra-qt: Fix connect error on startupKloen
2015-09-14Merge pull request #1123 from yuriks/gsp-flushYuri Kunde Schlesner
GSP: Implement command 0x05, used for flushing caches
2015-09-14Merge pull request #1111 from LittleWhite-tb/qt-close-renderwindowbunnei
Stop emulation when render window is closed
2015-09-14GSP: Implement command 0x05, used for flushing cachesYuri Kunde Schlesner
May fix additional texture caching issues. (Though mostly in homebrew, I haven't seen any commercial software use this to flush anything but command lists.)
2015-09-11general: Replace 0 literals with nullptr where applicableLioncash
2015-09-11Merge pull request #1147 from lioncash/nullptrYuri Kunde Schlesner
General: Replace NULL and '0' usages with nullptr where applicable
2015-09-11Merge pull request #1149 from lioncash/overrideYuri Kunde Schlesner
graphics_breakpoints_p: Add missing override specifier
2015-09-11graphics_breakpoints_p: Add missing override specifierLioncash
2015-09-11General: Replace NULL and '0' usages with nullptr where applicableLioncash
2015-09-11citra_qt: Reorganize headersLioncash
2015-09-07Merge pull request #1125 from yuriks/uilayout-configYuri Kunde Schlesner
citra-qt: Separate UI layout state in a separate section of the config
2015-09-07citra-qt: Separate UI layout state in a separate section of the configYuri Kunde Schlesner
Closes #1113
2015-09-07citra-qt: Trim recently used files list to size when insterting new itemYuri Kunde Schlesner
Even though they weren't visible in the UI, old entries would never be removed from the list and would be stored in the config file across sessions.
2015-09-07Merge pull request #1118 from Kloen/monospace-fontbunnei
citra-qt: Use monospace font on Disassembler and ARM Registers
2015-09-07Shader Debugger: Allow editing of input vertex dataYuri Kunde Schlesner
2015-09-07Shader Debugger: Highlight current instruction instead of focusingYuri Kunde Schlesner
This avoid some annoying focus stealing in some situations, and looks nicer in general.
2015-09-07Shader Debugger: Remove useless signalYuri Kunde Schlesner
2015-09-07Shader Debugger: Fix only first vertex attribute being loadedYuri Kunde Schlesner
2015-09-07Shader Debugger: Fix freeze when double-clicking shader disassemblyYuri Kunde Schlesner
2015-09-07Shader Debugger: Improve space efficiency of the layoutYuri Kunde Schlesner
2015-09-07Shader Disassembly: Fix printing of jump offsetsYuri Kunde Schlesner
2015-09-07Shader Disassembly: Fix disassembly of IFU/CALLU instructionsYuri Kunde Schlesner
2015-09-07Shader Disassembly: Implement support for MAD/MADIYuri Kunde Schlesner