early-access version 3894
This commit is contained in:
parent
07f3b52de2
commit
1ff61976eb
3 changed files with 3 additions and 3 deletions
|
@ -1,7 +1,7 @@
|
||||||
yuzu emulator early access
|
yuzu emulator early access
|
||||||
=============
|
=============
|
||||||
|
|
||||||
This is the source code for early-access 3893.
|
This is the source code for early-access 3894.
|
||||||
|
|
||||||
## Legal Notice
|
## Legal Notice
|
||||||
|
|
||||||
|
|
|
@ -1513,7 +1513,7 @@ IAppletCommonFunctions::IAppletCommonFunctions(Core::System& system_)
|
||||||
IAppletCommonFunctions::~IAppletCommonFunctions() = default;
|
IAppletCommonFunctions::~IAppletCommonFunctions() = default;
|
||||||
|
|
||||||
void IAppletCommonFunctions::SetCpuBoostRequestPriority(HLERequestContext& ctx) {
|
void IAppletCommonFunctions::SetCpuBoostRequestPriority(HLERequestContext& ctx) {
|
||||||
LOG_ERROR(Service_AM, "called");
|
LOG_WARNING(Service_AM, "(STUBBED) called");
|
||||||
|
|
||||||
IPC::ResponseBuilder rb{ctx, 2};
|
IPC::ResponseBuilder rb{ctx, 2};
|
||||||
rb.Push(ResultSuccess);
|
rb.Push(ResultSuccess);
|
||||||
|
|
|
@ -614,7 +614,7 @@ struct Nickname {
|
||||||
}
|
}
|
||||||
|
|
||||||
std::size_t index = 1;
|
std::size_t index = 1;
|
||||||
while (data[index] != 0) {
|
while (index < MaxNameSize && data[index] != 0) {
|
||||||
index++;
|
index++;
|
||||||
}
|
}
|
||||||
while (index < MaxNameSize && data[index] == 0) {
|
while (index < MaxNameSize && data[index] == 0) {
|
||||||
|
|
Loading…
Reference in a new issue