summaryrefslogtreecommitdiff
path: root/src/core (follow)
Commit message (Expand)AuthorAgeFilesLines
* Merge pull request #2368 from wwylele/camera-2Gravatar Yuri Kunde Schlesner2017-01-2911-172/+1457
|\
| * CAM: implement basic camera functions with a blank cameraGravatar wwylele2017-01-1111-172/+1457
* | Merge pull request #2429 from wwylele/auto-language-fixGravatar Yuri Kunde Schlesner2017-01-291-36/+38
|\ \
| * | CFG: override language setting on bootGravatar wwylele2017-01-191-36/+38
* | | Merge pull request #2494 from Kloen/killing-warnings-2-final-mixGravatar Yuri Kunde Schlesner2017-01-291-1/+1
|\ \ \
| * | | core: inline CPU, 132 warnings fixed on GCCGravatar Kloen2017-01-301-1/+1
* | | | Merge pull request #2492 from Kloen/killing-warnings-HD1.5ReMIXGravatar Yuri Kunde Schlesner2017-01-294-0/+28
|\ \ \ \ | |/ / / |/| | |
| * | | core: fix err_f.cpp warning about unhandled enumeration value on OSXGravatar Kloen2017-01-291-0/+2
| * | | core: fix savedata_archive.cpp warnings about unhandled enumeration values on...Gravatar Kloen2017-01-291-0/+12
| * | | core: fix archive_sdmc.cpp warnings about unhandled enumeration value on OSXGravatar Kloen2017-01-291-0/+12
| * | | core: fix archive_extsavedata.cpp warning on OSXGravatar Kloen2017-01-291-0/+2
* | | | core: emu_window.cpp, fix conversion warnings from float to s16 on MSVCGravatar Kloen2017-01-291-6/+6
|/ / /
* | | SDL: Select audio device (#2403)Gravatar Kloen Lansfiel2017-01-251-0/+1
* | | Merge pull request #2434 from mailwl/nfc-amiiboGravatar Yuri Kunde Schlesner2017-01-254-20/+249
|\ \ \
| * | | Service/NFC: stub some functionsGravatar mailwl2017-01-144-20/+249
* | | | core: fix mic_u warnings on MSVCGravatar Kloen2017-01-231-4/+4
* | | | HID: reset acceleroeter and gyroscope index in InitGravatar wwylele2017-01-201-0/+2
* | | | loader: Add support for 3DSX special relocation types, fixes citra-emu/citra#...Gravatar Thomas Farr2017-01-191-9/+25
* | | | CoreTiming: use named constant for ARM11 clock rateGravatar wwylele2017-01-164-5/+6
* | | | HID: manages updating itself using correct ticksGravatar wwylele2017-01-163-62/+93
|/ / /
* / / GSP::WriteHWRegsWithMask: fix register maskGravatar mailwl2017-01-141-1/+1
|/ /
* | Merge pull request #2425 from Subv/cleanup_todosGravatar bunnei2017-01-124-32/+30
|\ \
| * | Threads: Check the process' resource limit for the max allowed priority when ...Gravatar Subv2017-01-112-13/+9
| * | Thread: Added priority range checking to svcSetThreadPriority and removed pri...Gravatar Subv2017-01-113-18/+18
| * | Y2R: Use the proper error code when GetStandardCoefficient receives an invali...Gravatar Subv2017-01-111-1/+3
* | | Merge pull request #2308 from mailwl/ac-iGravatar bunnei2017-01-129-297/+424
|\ \ \ | |/ / |/| |
| * | Service/AC: add ac:i serviceGravatar mailwl2016-12-309-297/+424
* | | Merge pull request #2397 from Subv/pulseGravatar bunnei2017-01-105-13/+20
|\ \ \
| * | | Kernel: Implemented Pulse event and timers.Gravatar Subv2017-01-055-13/+20
| |/ /
* | | Merge pull request #2384 from bunnei/internal-res-optionGravatar bunnei2017-01-082-2/+1
|\ \ \
| * | | config: Add option for specifying screen resolution scale factor.Gravatar bunnei2017-01-072-2/+1
* | | | Merge pull request #1951 from wwylele/motion-sensorGravatar bunnei2017-01-075-8/+212
|\ \ \ \ | |/ / / |/| | |
| * | | Frontend: make motion sensor interfaced thread-safeGravatar wwylele2016-12-292-2/+8
| * | | Frontend: emulate motion sensorGravatar wwylele2016-12-265-8/+206
| | |/ | |/|
* | | Merge pull request #2410 from Subv/sleepthreadGravatar bunnei2017-01-063-0/+14
|\ \ \
| * | | Kernel: Don't attempt to yield execution in SleepThread(0) if there are no av...Gravatar Subv2017-01-053-0/+14
* | | | Merge pull request #2396 from Subv/sema_acquireGravatar bunnei2017-01-061-1/+2
|\ \ \ \
| * | | | Kernel/Semaphore: Fixed a regression in semaphore waits.Gravatar Subv2017-01-051-1/+2
| |/ / /
* | | | Kernel: Fix SharedMemory objects always returning error when addr = 0 (#2404)Gravatar Hyper2017-01-061-1/+5
* | | | Merge pull request #2408 from Subv/priority_boostingGravatar bunnei2017-01-061-27/+0
|\ \ \ \
| * | | | Kernel: Removed the priority boost code for starved threads.Gravatar Subv2017-01-051-27/+0
| |/ / /
* / / / Kernel: Remove some unused functions.Gravatar Subv2017-01-052-32/+0
|/ / /
* | | Merge pull request #2393 from Subv/synchGravatar Sebastian Valle2017-01-0517-159/+221
|\ \ \
| * | | Kernel: Add some asserts to enforce the invariants in the scheduler.Gravatar Subv2017-01-052-2/+13
| * | | Kernel: Remove a thread from all of its waiting objects' waiting_threads list...Gravatar Subv2017-01-051-18/+4
| * | | Kernel: Remove Thread::wait_objects_index and use wait_objects to hold all th...Gravatar Subv2017-01-054-21/+22
| * | | Kernel: Use different thread statuses when a thread calls WaitSynchronization...Gravatar Subv2017-01-043-16/+20
| * | | Kernel/Mutex: Propagate thread priority changes to other threads inheriting t...Gravatar Subv2017-01-045-42/+60
| * | | Kernel/Mutex: Update a mutex priority when a thread stops waiting on it.Gravatar Subv2017-01-045-24/+42
| * | | Kernel/Mutex: Implemented priority inheritance.Gravatar Subv2017-01-045-31/+51