CPU: Fix puts() hook incorrect arg
Some checks are pending
Create rolling release / Windows x64 Build (push) Waiting to run
Create rolling release / Windows x64 SSE2 Build (push) Waiting to run
Create rolling release / Windows ARM64 Build (push) Waiting to run
Create rolling release / Linux x64 AppImage (push) Waiting to run
Create rolling release / Linux x64 SSE2 AppImage (push) Waiting to run
Create rolling release / Linux Flatpak Build (push) Waiting to run
Create rolling release / MacOS Universal Build (push) Waiting to run
Create rolling release / Create Release (push) Blocked by required conditions

This commit is contained in:
Stenzek 2024-11-11 16:27:11 +10:00
parent 6ffa5bffab
commit 365e129792
No known key found for this signature in database

View File

@ -783,7 +783,7 @@ void CPU::HandlePutsSyscall()
{
const auto& regs = g_state.regs;
u32 addr = regs.a1;
u32 addr = regs.a0;
for (u32 i = 0; i < 1024; i++)
{
u8 value;