summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2018-04-07Fix spelling of InitializeJames Rowe
2018-04-06Merge pull request #310 from N00byKing/patch-1bunnei
Update multiple comments from citra to yuzu
2018-04-06core, main.h: Abort on 32Bit ROMs (#309)N00byKing
* core, main.h: Abort on 32Bit ROMs * main.cpp: Fix Grammar
2018-04-06Merge pull request #312 from jroweboy/update-fmtlibbunnei
Update fmtlib to fix msvc warnings
2018-04-05Update fmtlib to fix msvc warningsJames Rowe
Additionally, when updating fmtlib, there was a change in fmtlib broke how the old logging macro was overloaded, so this works around that by just naming the fmtlib macro impl something different
2018-04-04rasterizer_interface.h: Update from citra to yuzuN00byKing
2018-04-04default_ini.h: Update from citra to yuzuN00byKing
2018-04-04gl_rasterizer_cache.cpp: Update from citra to yuzuN00byKing
2018-04-04gl_rasterizer_cache.h: Update from citra to yuzuN00byKing
2018-04-04renderer_opengl.h: Update from citra to yuzuN00byKing
2018-04-04Merge pull request #308 from bunnei/misc-fixes-2bunnei
Implement and stub several SVC/VI/Audio/Friend/etc. funcs
2018-04-02svc: Stub out SetThreadActivity, GetThreadContext.bunnei
2018-04-02audren_u: Stub out GetActiveAudioDeviceName.bunnei
2018-04-02audout_u: Implement GetAudioOutState.bunnei
2018-04-02nifm: GetResult does not return a data field.bunnei
2018-04-02vi: Implement GetDisplayResolution.bunnei
2018-04-02shared_memory: Remove incorrect 3ds-specific check.bunnei
2018-04-02service: Add friend:u interface.bunnei
2018-04-02Merge pull request #306 from daniellimws/new-fmt-macrosbunnei
logging: Use variadic template instead of FMT_VARIADIC
2018-04-03logging: Change FmtLogMessage to use variadic template instead of FMT_VARIADICDaniel Lim Wee Soong
Due to premature merging of #262 I think the build may be failing right now. Should merge this ASAP to fix it.
2018-04-02Merge pull request #262 from daniellimws/fmtlib-macrosbunnei
Logging: Add fmtlib-based macros
2018-04-02Merge pull request #267 from N00byKing/patch-1bunnei
Update Dialog from citra to yuzu
2018-04-02Merge pull request #276 from N00byKing/acctoyuzubunnei
Change Telemetry Names to yuzu and remove links to citra
2018-04-02Merge pull request #304 from daniellimws/fix-openbsdbunnei
Fix build on OpenBSD
2018-04-02Merge pull request #305 from N00byKing/patch-2James Rowe
deconstructed_rom_directory.cpp: Fix Typo
2018-04-03deconstructed_rom_directory.cpp: Fix TypoN00byKing
2018-04-02Merge pull request #66 from RiverCityRansomware/qtUpdatebunnei
Updates CMakeLists to use Qt 5.10.0 instead of Qt 5.7
2018-04-03externals: Update fmt to 4d35f94Daniel Lim Wee Soong
Versions prior to this didn't compile on OpenBSD due to unconditional use of the non-standard strtod_l() function. The fmt::MemoryWriter API has been removed in the intervening versions, so replace its use with fmt::memory_buffer and fmt::format_to. The library also no longer provides the fmt::fmt ALIAS, so define it in externals/CMakeLists.txt.
2018-04-03common: fix swap functions on Bitrig and OpenBSDDaniel Lim Wee Soong
swap{16,32,64} are defined as macros on the two, but client code tries to invoke them as Common::swap{16,32,64}, which naturally doesn't work. This hack redefines the macros as inline functions in the Common namespace: the bodies of the functions are the same as the original macros, but relying on OS-specific implementation details like this is of course brittle.
2018-04-02Merge pull request #297 from bunnei/hid-touch-statebunnei
hid: Write empty touch screen state.
2018-04-02Merge pull request #296 from bunnei/misc-mem-fsp-fixesbunnei
Fix stack region, implement FSP GetSize/SetSize, and some stubs
2018-04-02Merge pull request #288 from Subv/macro_interpreterbunnei
GPU: Implemented a gpu macro interpreter
2018-04-01GPU: Use the MacroInterpreter class to execute the GPU macros instead of ↵Subv
HLEing them.
2018-04-01GPU: Implemented a gpu macro interpreter.Subv
The Ryujinx macro interpreter and envydis were used as reference. Macros are programs that are uploaded by the games during boot and can later be called by writing to their method id in a GPU command buffer.
2018-04-01hid: Write empty touch screen state.bunnei
2018-03-31hle_ipc, fsp_srv: Cleanup logging.bunnei
2018-03-31hid: Stub out GetSupportedNpadStyleSet.bunnei
2018-03-31hle_ipc: Do not ensure write buffer size.bunnei
2018-03-31fsp_srv: Implement GetSize and SetSize.bunnei
2018-03-31memory: Fix stack region.bunnei
2018-03-31Merge pull request #293 from N00byKing/drkthmbunnei
Add Dark Theme (And Theming in General + Icon Theming)
2018-03-30Merge pull request #292 from bunnei/botw-progressbunnei
NFP, SVC, and AudRen progress
2018-03-30Port citra-emu/citra#3610 to yuzuN00byKing
2018-03-30Remove whitespacesN00byKing
2018-03-30Add Dark theme, Icon themingN00byKing
configure_general.ui: Add UI Option for Themes config.cpp: Save Theme Settings
2018-03-29audren_u: Stub QueryAudioDeviceSystemEvent and GetActiveChannelCount.bunnei
2018-03-29svc: Stub GetThreadCoreMask.bunnei
2018-03-29service: Add NFP module interface.bunnei
service: Initialize NFP service. Log: Add NFP service as a log subtype.
2018-03-29Merge pull request #290 from MerryMage/dfix-20180329bunnei
dynarmic: Update to 9cc12d8
2018-03-29Merge pull request #289 from lioncash/self-assignbunnei
result: Check against self-assignment in ResultVal's copy assignment operator