summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2015-05-04Merge pull request #719 from yuriks/unused-stuffbunnei
Core: Remove some unused functions and types
2015-05-04Core: Remove some unused functions and typesYuri Kunde Schlesner
2015-05-03Merge pull request #709 from linkmauve/rename-submodulesarchshift
Rename git submodules, so they are more easily accessible from external tools
2015-05-02Merge pull request #698 from Zaneo/clip_stylus_inputTony Wasserka
EmuWindow: Clip mouse input coordinates to emulated screen dimensions.
2015-05-01EmuWindow: Clip mouse input coordinates to emulated screen dimensions.Zaneo
If the mouse position for a mouse move/drag would take it outside the emulated screen dimensions, clip the coordinates to the emulated screen dimensions. Qt and GLFW will report negative coordinates for mouse positions to the left, or above citra window. Added restriction to mouse coordinates passed to touchmoved by Qt/GLFW to be greater or equal to zero.
2015-05-01Merge pull request #713 from bunnei/qt-emuthread-fixesbunnei
Fix emulation state resetting to support multiple emulation sessions
2015-05-01Qt: Shutdown game on emulator close event.bunnei
2015-05-01Qt: Disable "Start" unless we are paused (it otherwise has no meaning and ↵bunnei
causes a crash).
2015-05-01Qt: Fixed a bug in shutdown procedure, various cleanups.bunnei
2015-05-01Qt: Clear registers widget on shutdown.bunnei
2015-05-01Qt: Use signals for emu_thread start/stop and fix disasm widget.bunnei
2015-05-01Qt: Restructured to remove unnecessary shutdown event and various cleanups.bunnei
2015-05-01Qt: Fix loading a new game without stopping emulation.bunnei
2015-05-01CoreTiming: Initialize static variables at bootup.bunnei
2015-05-01HLE: Properly initialize and shutdown remaining modules.bunnei
2015-05-01Dyncom: Move cream cache to ARMul_State.bunnei
2015-05-01Kernel: Properly initialize and shutdown all modules.bunnei
2015-05-01HW: Properly initialize and shutdown all modules.bunnei
2015-05-01Services: Initialize all state variables at bootup.bunnei
2015-05-01Memory: Properly cleanup & shutdown.bunnei
2015-05-01Qt: Create emu thread on bootup, kill it on shutdown.bunnei
2015-05-01EmuThread: Remove unused filename attribute.bunnei
2015-05-01Qt: Move EmuThread ownership from render window to main window.bunnei
2015-04-29Merge pull request #717 from linkmauve/useless-autobunnei
VideoCore: Remove a superfluous auto variable declaration in debug_utils
2015-04-29VideoCore: Remove a superfluous auto variable declaration in debug_utils.Emmanuel Gil Peyrot
2015-04-28Merge pull request #715 from purpasmart96/configmem_typo_fixYuri Kunde Schlesner
ConfigMem: Remove duplicate retail bit
2015-04-28ConfigMem: Remove duplicate retail bitpurpasmart96
2015-04-28Merge pull request #692 from purpasmart96/log_improvementsbunnei
Services/Loader: Use more sensible log formats for certain functions along with more info being logged.
2015-04-27Services/Loader: Use more sensible log formats for certain functionspurpasmart96
along with more info being logged.
2015-04-24Merge pull request #710 from lioncash/staticarchshift
ptm_sysm: Add static specifier to IsLegacyPowerOff
2015-04-24ptm_sysm: Add static specifier to IsLegacyPowerOffLioncash
2015-04-24Rename git submodules, so they are more easily accessible from external tools.Emmanuel Gil Peyrot
2015-04-20Merge pull request #706 from lioncash/unusedbunnei
dyncom: Remove more unused/unnecessary code
2015-04-20dyncom: Remove more unused/unnecessary codeLioncash
Gets rid of a sizeable amount of stuff in armdefs.
2015-04-19Merge pull request #704 from citra-emu/archshift-patch-1bunnei
Add "or any later version" qualifier to the GPLv2 statement in the readme
2015-04-19Merge pull request #703 from lioncash/cruftbunnei
dyncom: Remove unused/unnecessary VFP cruft
2015-04-18Add "or any later version" qualifier to the GPLv2 statement in the readmearchshift
2015-04-17dyncom: Remove unused/unnecessary VFP cruftLioncash
2015-04-17Merge pull request #691 from rohit-n/sign-comparebunnei
Silence some -Wsign-compare warnings.
2015-04-17Merge pull request #699 from yuriks/event-use-lambdabunnei
Common: thread.h cleanups
2015-04-16Common: thread.h cleanupsYuri Kunde Schlesner
The helper classes are rendered obsolete by C++11 lambdas. Also made formatting conform to our code style.
2015-04-14Merge pull request #696 from yuriks/interface-deinlinebunnei
De-inline functions from Interface, removing them from service.h
2015-04-14Merge pull request #697 from linkmauve/clang<3bunnei
Fix a few warnings as reported by clang 3.6
2015-04-14Core_ARM11: Replace debug prints with our own logging functions in vfpsingle.Emmanuel Gil Peyrot
2015-04-14citra-qt: Use std::abs() to get the right absolute function for s64.Emmanuel Gil Peyrot
2015-04-14Kernel: Use the correct format string for u64 hex.Emmanuel Gil Peyrot
2015-04-14Headers: Add some forgotten overrides, thanks clang!Emmanuel Gil Peyrot
2015-04-14De-inline functions from Interface, removing them from service.hYuri Kunde Schlesner
This reduces the time for a full recompile from 65.43s to 59.53s (~9%)
2015-04-09Merge pull request #683 from bunnei/thread-prioritybunnei
Thread priority and scheduler improvements
2015-04-09SVC: Assert on unsupported CreateThread processor ID.bunnei