Skip to content

Commit

Permalink
guys i'm so dumb that i've forgot 2 fucking lines to translate last time
Browse files Browse the repository at this point in the history
Signed-off-by: Simo <[email protected]>
  • Loading branch information
Simo3ds authored Dec 21, 2023
1 parent 73151ac commit ccbd5a4
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions sysmodules/rosalina/source/menus.c
Original file line number Diff line number Diff line change
Expand Up @@ -653,17 +653,17 @@ void RosalinaMenu_TakeScreenshot(void)
do
{
Draw_Lock();
Draw_DrawString(10, 10, COLOR_TITLE, "Screenshot");
Draw_DrawString(10, 10, COLOR_TITLE, "Cattura schermo");
if (R_FAILED(res))
Draw_DrawFormattedString(10, 30, COLOR_WHITE, "Operation failed (0x%08lx).", (u32)res);
Draw_DrawFormattedString(10, 30, COLOR_WHITE, "Operazione fallita (0x%08lx).", (u32)res);
else
{
u32 t1 = (u32)(1000 * timeSpentConvertingScreenshot / SYSCLOCK_ARM11);
u32 t2 = (u32)(1000 * timeSpentWritingScreenshot / SYSCLOCK_ARM11);
u32 posY = 30;
posY = Draw_DrawString(10, posY, COLOR_WHITE, "Operation succeeded.\n\n");
posY = Draw_DrawFormattedString(10, posY, COLOR_WHITE, "Time spent converting: %5lums\n", t1);
posY = Draw_DrawFormattedString(10, posY, COLOR_WHITE, "Time spent writing files: %5lums\n", t2);
posY = Draw_DrawString(10, posY, COLOR_WHITE, "Operazione eseguita con successo.\n\n");
posY = Draw_DrawFormattedString(10, posY, COLOR_WHITE, "Tempo impiegato a convertire: %5lums\n", t1);
posY = Draw_DrawFormattedString(10, posY, COLOR_WHITE, "Tempo impiegato a scrivere il file: %5lums\n", t2);
}

Draw_FlushFramebuffer();
Expand Down

0 comments on commit ccbd5a4

Please sign in to comment.