Skip to content

Commit

Permalink
Yet another file to translate cheats.c
Browse files Browse the repository at this point in the history
Signed-off-by: Simo <[email protected]>
  • Loading branch information
Simo3ds authored Nov 18, 2023
1 parent 8a08fe4 commit e9ee5a7
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions sysmodules/rosalina/source/menus/cheats.c
Original file line number Diff line number Diff line change
Expand Up @@ -2046,14 +2046,14 @@ void RosalinaMenu_Cheats(void)
do
{
Draw_Lock();
Draw_DrawString(10, 10, COLOR_TITLE, "Cheats");
Draw_DrawString(10, 10, COLOR_TITLE, "Trucchi");
if (titleId == 0)
{
Draw_DrawString(10, 30, COLOR_WHITE, "No suitable title found");
Draw_DrawString(10, 30, COLOR_WHITE, "Nessun titolo avente trucchi trovato");
}
else
{
Draw_DrawFormattedString(10, 30, COLOR_WHITE, "No cheats found for title %016llX", titleId);
Draw_DrawFormattedString(10, 30, COLOR_WHITE, "Nessun trucco trovato per il titolo %016llX", titleId);
}

Draw_FlushFramebuffer();
Expand All @@ -2074,7 +2074,7 @@ void RosalinaMenu_Cheats(void)
}
if (R_SUCCEEDED(r))
{
Draw_DrawFormattedString(10, 10, COLOR_TITLE, "Cheat list");
Draw_DrawFormattedString(10, 10, COLOR_TITLE, "Lista trucchi");

for (s32 i = 0; i < CHEATS_PER_MENU_PAGE && page * CHEATS_PER_MENU_PAGE + i < cheatCount; i++)
{
Expand All @@ -2090,7 +2090,7 @@ void RosalinaMenu_Cheats(void)
}
else
{
Draw_DrawFormattedString(10, 10, COLOR_TITLE, "ERROR: %08lx", r);
Draw_DrawFormattedString(10, 10, COLOR_TITLE, "ERRORE: %08lx", r);
Draw_DrawFormattedString(10, 30, COLOR_RED, failureReason);
}
Draw_FlushFramebuffer();
Expand Down

0 comments on commit e9ee5a7

Please sign in to comment.