summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2015-05-08Kernel: Remove g_program_idYuri Kunde Schlesner
This has been obsoleted by the field in Process.
2015-05-08Kernel: Introduce skeleton Process class to hold process dataYuri Kunde Schlesner
2015-05-08Common: Add StringFromFixedZeroTerminatedBufferYuri Kunde Schlesner
2015-05-08Core: Fix sorting in CMakeFiles.txtYuri Kunde Schlesner
2015-05-07Merge pull request #728 from lioncash/varsLioncash
dyncom: Remove an unnecessary variable in the interpreter
2015-05-07Remove unnecessary dyncom header filesLioncash
2015-05-07dyncom: Remove an unnecessary variable in the interpreterLioncash
All this was doing was needlessly aliasing a variable.
2015-05-07Merge pull request #725 from yuriks/remove-common-crapYuri Kunde Schlesner
Remove unused hash and mem_arena from common
2015-05-07Merge pull request #723 from lioncash/commonstrbunnei
string_util: Get rid of UriDecode/UriEncode
2015-05-07Profiler: Fix off-by-one error when computing average.Yuri Kunde Schlesner
2015-05-07Common: Remove mem_arena.cpp/hYuri Kunde Schlesner
It is superfluous for Citra. (It's only really necessary if you're doing JIT. We were using it but not taking any advantage from it.) This should make 32-bit builds work again.
2015-05-07Common: Remove hash.cpp/hYuri Kunde Schlesner
Currently unused and the code quality is pretty questionable.
2015-05-07Common: Add proper macros to test for architecture pointer sizeYuri Kunde Schlesner
The old system of just defining macros available in some other platform was susceptible to silently using the wrong code if you forgot to include a particular header. This fixes a crash on non-Windows platforms introduced by e1fbac3ca13d37d2625c11d30cfdece4327b446b.
2015-05-07string_util: Get rid of UriDecode/UriEncodeLioncash
2015-05-07Merge pull request #721 from yuriks/more-cleanupsYuri Kunde Schlesner
More cleanups
2015-05-07Fix printf format warningYuri Kunde Schlesner
2015-05-07Common: Remove common.hYuri Kunde Schlesner
2015-05-07Common: Move alignment macros to common_funcs.hYuri Kunde Schlesner
2015-05-07Common: Move SSE detection ifdefs to platform.hYuri Kunde Schlesner
2015-05-07Common: Remove more unused compatibility definesYuri Kunde Schlesner
2015-05-07Common: Move IO-specific compatibility macros to file_util.cppYuri Kunde Schlesner
2015-05-06Common: Remove many unnecessary cross-platform compatibility macrosYuri Kunde Schlesner
2015-05-06Clean-up includesYuri Kunde Schlesner
2015-05-06FileSys: De-inline Path membersYuri Kunde Schlesner
2015-05-06FileSys: Clean-up includes, de-inline destructorsYuri Kunde Schlesner
2015-05-06Move typedefs from kernel.h to more appropriate placesYuri Kunde Schlesner
2015-05-06Common: Move NonCopyable to common_types.hYuri Kunde Schlesner
2015-05-06Common: Use C++11 deleted functions for NonCopyableYuri Kunde Schlesner
2015-05-06Common: Remove unused enumsYuri Kunde Schlesner
2015-05-06Merge pull request #695 from Subv/crash_fbunnei
GPU: Implemented default vertex shader attributes.
2015-05-06GPU: Implemented default vertex shader attributes.Subv
Fixes some games crashing.
2015-05-06HLE: Clean up SVC dispatch mechanismYuri Kunde Schlesner
2015-05-04Core: Remove some unused functions and typesYuri Kunde Schlesner
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-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