Fix "Ejected GBA cart" not adding a newline (#2140)

This commit is contained in:
Alex 2024-08-21 13:39:34 +02:00 committed by GitHub
parent 824eb370e4
commit 4f6498c99c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

View File

@ -833,7 +833,7 @@ void GBACartSlot::SetCart(std::unique_ptr<CartCommon>&& cart) noexcept
if (!Cart)
{
Log(LogLevel::Info, "Ejected GBA cart");
Log(LogLevel::Info, "Ejected GBA cart\n");
return;
}
@ -917,4 +917,4 @@ void GBACartSlot::SRAMWrite(u32 addr, u8 val) noexcept
}
}
}