aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
Commit message (Collapse)AuthorAge
...
| | * | | | | | | | Kernel/File: Fixed file read/write hwtestsGravatar Subv2014-12-08
| |/ / / / / / / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The 3DS allows the user to read from files opened with the Write access modifier, even if he did not specify the Read access modifier. Open the files in binary mode so that we can prevent CR/LF problems in Windows, where a line-end is replaced by these two bytes instead of just 0xA, this was causing problems with the GetSize test
| | | * | | | | | armemu: Fix SSAXGravatar Lioncash2014-12-08
| | | | | | | | |
| | * | | | | | | Loader: Add 3DSX supportGravatar ichfly2014-12-08
| |/ / / / / / / |/| | | | | | |
| | * | | | | | armemu: Fix SASXGravatar Lioncash2014-12-08
| | | | | | | |
| | * | | | | | armemu: Fix parenthesis warnings regarding bitwise opsGravatar Lioncash2014-12-07
| |/ / / / / / |/| | | | | |
| | | | | * | StringUtil: Perform some minimal cleanup.Gravatar Tony Wasserka2014-12-07
| | | | | | |
| | | | | * | Integrate Boost into build system and perform a trivial cleanup in ↵Gravatar Tony Wasserka2014-12-07
| |_|_|_|/ / |/| | | | | | | | | | | | | | | | | vertex_shader.cpp.
| * | | | | Make OpenDirectory fail if the directory doesn't existGravatar archshift2014-12-07
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This is in line with what the hardware itself does. It does this by splitting the initial directory opening into Directory.Open(), which will return false if a stat fails. Then, Archive::OpenDirectory will return nullptr, and archive.cpp will return an error code .
| | | | * | Mutex: Remove some forward declarationsGravatar Subv2014-12-07
| | | | | | | | | | | | | | | | | | | | | | | | Moved Mutex::WaitSynchronization to the end of the file.
| | | | * | Mutex: Release all held mutexes when a thread exits.Gravatar Subv2014-12-07
| | | | | |
* | | | | | Merge pull request #245 from rohit-n/null-nullptrGravatar bunnei2014-12-07
|\ \ \ \ \ \ | |/ / / / / |/| | | | | Change NULLs to nullptrs.
| | | | * | Mutex: Properly lock the mutex when a thread enters itGravatar Subv2014-12-05
| |_|_|/ / |/| | | | | | | | | | | | | | Also resume only the next immediate thread waiting for the mutex when it is released, instead of resuming them all.
* | | | | Merge pull request #250 from Subv/cbranch_2Gravatar bunnei2014-12-04
|\ \ \ \ \ | | | | | | | | | | | | SVC: Implemented GetThreadId.
* \ \ \ \ \ Merge pull request #222 from archshift/renamexyzGravatar bunnei2014-12-04
|\ \ \ \ \ \ | | | | | | | | | | | | | | Implemented RenameFile and RenameDirectory in FS:USER
* \ \ \ \ \ \ Merge pull request #248 from lioncash/kernelGravatar bunnei2014-12-04
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | Misc minor kernel-related changes.
| | | * | | | | Threads: Remove a redundant function.Gravatar Subv2014-12-04
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Use the next_thread_id variable directly.
| | | * | | | | Threads: Implemented a sequential thread idGravatar Subv2014-12-04
| | | | | | | |
| | * | | | | | Updated archive.cpp functions for proper error handlingGravatar archshift2014-12-03
| | | | | | | |
| | | * | | | | SVC: Implemented GetThreadId.Gravatar Subv2014-12-04
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | For now threads are using their Handle value as their Id, it should not really cause any problems because Handle values are unique in Citra, but it should be changed. I left a ToDo there because this is not correct behavior as per hardware.
* | | | | | | | Merge pull request #249 from lioncash/enumGravatar bunnei2014-12-04
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | mem_map: Make enum for addresses use u32 as the underlying type
* \ \ \ \ \ \ \ \ Merge pull request #247 from lioncash/constGravatar bunnei2014-12-03
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | hid_user: Pass by reference with PadButtonPress/PadButtonRelease
| | * | | | | | | | mem_map: Make enum for addresses use u32 as the underlying typeGravatar Lioncash2014-12-03
| | | | | | | | | |
* | | | | | | | | | Merge pull request #238 from archshift/dspGravatar bunnei2014-12-03
|\ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | Add stub for ConvertProcessFromDspDram
| * | | | | | | | | | Add stub for ConvertProcessFromDspDramGravatar archshift2014-12-03
| | |/ / / / / / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | Should theoretically push retail stuff further along
| | | * | | | | | | kernel: Shorten GetCountGravatar Lioncash2014-12-03
| | | | | | | | | |
| | | * | | | | | | kernel: Make some functions constGravatar Lioncash2014-12-03
| | |/ / / / / / / | |/| | | | | | |
| | * | | | | | | hid_user: Pass by reference with PadButtonPress/PadButtonReleaseGravatar Lioncash2014-12-03
| | | |/ / / / / | | |/| | | | |
* | / | | | | | PTM_U: Added a stub for GetBatteryLevel & GetBatteryChargeState & ↵Gravatar purpasmart962014-12-03
| |/ / / / / / |/| | | | | | | | | | | | | | | | | | | | GetAdapterState
| | | * | | | Change NULLs to nullptrs.Gravatar Rohit Nirmal2014-12-03
| |_|/ / / / |/| | | | |
* | | | | | Merge pull request #236 from rohit-n/sign-compareGravatar bunnei2014-12-03
|\ \ \ \ \ \ | | | | | | | | | | | | | | Silence a few -Wsign-compare warnings.
* \ \ \ \ \ \ Merge pull request #231 from purpasmart96/serv_ac_wifi_statusGravatar bunnei2014-12-03
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | AC_U: Added a stub for GetWifiStatus
* \ \ \ \ \ \ \ Merge pull request #219 from Subv/ptmGravatar bunnei2014-12-03
|\ \ \ \ \ \ \ \ | |_|_|/ / / / / |/| | | | | | | PTM_U: Implemented the GetShellState function.
| | | | | * | | MemMap: Updated memory map to subtract base address instead of mask.Gravatar bunnei2014-12-03
| |_|_|_|/ / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - More readable, a little less error prone. Conflicts: src/core/mem_map.h src/core/mem_map_funcs.cpp
| | * | | | | AC_U: Added a stub for GetWifiStatusGravatar purpasmart962014-12-02
| | | | | | |
| | | * | | | Silence a few -Wsign-compare warnings.Gravatar Rohit Nirmal2014-11-30
| | | | | | |
* | | | | | | Merge pull request #237 from vaguilar/fix-viewportGravatar bunnei2014-11-30
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | Fixed viewport error caused by rounding
* \ \ \ \ \ \ \ Merge pull request #224 from bunnei/dsp-service-improvementsGravatar bunnei2014-11-30
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | Dsp service improvements
* \ \ \ \ \ \ \ \ Merge pull request #214 from Subv/masterGravatar bunnei2014-11-30
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | CFG:U: Implemented the GetCountryCodeID and GetCountryCodeString
* \ \ \ \ \ \ \ \ \ Merge pull request #196 from archshift/settingsGravatar bunnei2014-11-30
|\ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | Merge Config::ReadXYZs
| | | * | | | | | | | DSP: Added stubs for several commonly used DSP service functions.Gravatar bunnei2014-11-30
| | | | | | | | | | |
| | | * | | | | | | | DSP: Fixed typo in port name.Gravatar bunnei2014-11-30
| | | | | | | | | | |
| | | | | * | | | | | PTM_U: Implemented the GetShellState function.Gravatar Subv2014-11-30
| | | | | | | | | | |
| | | | * | | | | | | Fixed viewport error caused by roundingGravatar vaguilar2014-11-30
| | | | | |_|/ / / / | | | | |/| | | | |
* | | | | | | | | | Merge pull request #225 from bunnei/fix-release-mutexGravatar bunnei2014-11-30
|\ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | Mutex: Changed behavior to always release mutex for all threads.
* \ \ \ \ \ \ \ \ \ \ Merge pull request #226 from bunnei/svc-and-thread-fixesGravatar bunnei2014-11-30
|\ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | Svc and thread fixes
* \ \ \ \ \ \ \ \ \ \ \ Merge pull request #228 from linkmauve/glfw-errorGravatar bunnei2014-11-30
|\ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | GLFW: Add an error callback before calling glfwInit()
* \ \ \ \ \ \ \ \ \ \ \ \ Merge pull request #235 from yuriks/dyncom-mapGravatar bunnei2014-11-30
|\ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | dyncom: Use unordered_map rather than the terrible 2-level bb_map
| | | | | | * | | | | | | | CFG:U: Implemented the GetCountryCodeID and GetCountryCodeString.Gravatar Subv2014-11-29
| | | | | | | |/ / / / / / | | | | | | |/| | | | | |
| | * | | | / | | | | | | GLFW: Add an error callback before calling glfwInit()Gravatar Emmanuel Gil Peyrot2014-11-29
| | | |_|_|/ / / / / / / | | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | It will print a message to know what happened in case something went wrong in a GLFW call. Also replace every printf() in the glfw emu-window by ERROR_LOG().
| * / | | | | | | | | | dyncom: Use unordered_map rather than the terrible 2-level bb_mapGravatar Yuri Kunde Schlesner2014-11-29
| |/ / / / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Seems (probably just placebo/wishful thinking) to make it slightly faster. Also reduces memory usage and makes shutdown when debugging from MSVC fast.