rosalina: remove all remaining refs to __syscalls (which we don't init)

This commit is contained in:
TuxSH
2020-04-26 12:07:17 +01:00
parent 37c5c6f049
commit b313a4aa2f
8 changed files with 282 additions and 25 deletions

View File

@@ -666,7 +666,7 @@ void RosalinaMenu_ProcessList(void)
if(gdbServer.super.running)
{
char ipBuffer[17];
u32 ip = gethostid();
u32 ip = socGethostid();
u8 *addr = (u8 *)&ip;
int n = sprintf(ipBuffer, "%hhu.%hhu.%hhu.%hhu", addr[0], addr[1], addr[2], addr[3]);
Draw_DrawString(SCREEN_BOT_WIDTH - 10 - SPACING_X * n, 10, COLOR_WHITE, ipBuffer);