- Sep 20, 2018
-
-
bunnei authored
control_metadata: Move language name array definition to the cpp file
-
bunnei authored
xts_archive/nax: Minor interface changes
-
bunnei authored
Implemented NTC & IEnsureNetworkClockAvailabilityService
-
David Marcec authored
-
David Marcec authored
Needed because of the recent nim fixes
-
- Sep 19, 2018
-
-
Lioncash authored
There's no need to indent the code here, given the if case contains a return statement at the end of it.
-
Lioncash authored
This was used in two different translation units (deconstructed_rom_directory and patch_manager). This means we'd be pointlessly duplicating the whole array twice due to it being defined within the header.
-
Lioncash authored
These variables aren't used, which still has an impact, as std::vector cannot be optimized away by the compiler (it's constructor and destructor are both non-trivial), so this was just wasting memory.
-
Lioncash authored
std::shared_ptr isn't strictly necessary here and is only ever used in contexts where the object doesn't depend on being shared. This also makes the interface more flexible, as it's possible to create a std::shared_ptr from a std::unique_ptr (std::shared_ptr has a constructor that accepts a std::unique_ptr), but not the other way around.
-
Lioncash authored
An instance of the NAX apploader already has an existing NAX instance in memory. Calling directly into IdentifyType() directly would re-parse the whole file again into yet another NAX instance, only to toss it away again. This gets rid of unnecessary/redundant file parsing and allocations.
-
Lioncash authored
AsNCA() allocates an NCA instance every time it's called. In the current manner it's used, it's quite inefficient as it's making a redundant allocation. We can just amend the order of the conditionals to make it easier to just call it once.
-
Lioncash authored
Ensures that the member always has a deterministic value.
-
Lioncash authored
Orders the initializer list in the same order the members would be initialized. Avoids compiler warnings.
-
David authored
* Reworked incorrect nifm stubs Need confirmation on `CreateTemporaryNetworkProfile`, unsure which game uses it but according to reversing. It should return a uuid which we currently don't do. Any 0 client id is considered an invalid client id. GetRequestState 0 is considered invalid. * Fixups for nifm
-
bunnei authored
gl_rasterizer: Fix StartAddress handling with indexed draw calls.
-
bunnei authored
Fixed GetAccountId stub, Added error code for OpenDirectory and added ActivateNpadWithRevision
-
bunnei authored
Removed the use of rp.MakeBuilder in the yuzu codebase
-
David Marcec authored
With these, `Nintendo Entertainment System - Nintendo Switch Online` loads
-
Markus Wick authored
We uploaded the wrong data before. So the offset on the host GPU pointer may work for the first vertices, the last ones run out bounds. Let's just offset the upload instead.
-
David Marcec authored
-
David Marcec authored
Due to keeping the code style consistent in the yuzu codebase. `rb = rp.MakeBuilder(...)` was replaced with `rb{ctx, ...}`
-
bunnei authored
Implemented IProfile::GetImageSize
-
bunnei authored
audio_core: Replace includes with forward declarations where applicable.
-
bunnei authored
Implemented GetDefaultDisplayResolution
-
bunnei authored
core/core_cpu: Replace exclusive monitor include with forward declaration
-
bunnei authored
svc_wrap: Convert the PARAM macro into a function
-
bunnei authored
Stubbed ActivateConsoleSixAxisSensor & StartConsoleSixAxisSensor
-
bunnei authored
gl_shader_decompiler: Avoid truncation warnings within LD_A and ST_A code
-
bunnei authored
shader_decompiler: Implemented (Partialy) Control Codes and CSETP
-
bunnei authored
shader_decompiler: Asserts for Texture Instructions
-
- Sep 18, 2018
-
-
Philippe Babin authored
* Fix bug where default username value for yuzu_cmd create an userprofile with uninitialize data as username * Fix format * Apply code review changes * Remove nullptr check
-
bunnei authored
kernel/svc: Handle invalid address cases within svcArbitrateLock() and svcArbitrateUnlock()
-
bunnei authored
arm_interface: Remove ARM11-isms from the CPU interface
-
bunnei authored
arm_dynarmic: Correct ExclusiveWrite128()'s operation
-
David Marcec authored
-
David Marcec authored
-
David Marcec authored
-
David Marcec authored
-
David Marcec authored
-
Lioncash authored
This can just be a regular function, getting rid of the need to also explicitly undef the define at the end of the file. Given FuncReturn() was already converted into a function, it's #undef can also be removed.
-