Lines Matching refs:printY

85     s16     printY;  in Render()  local
101 printY = HEX_BOX_TL_Y; in Render()
102 printX += DEMORFPrintf( printX, printY, 0, "(hex) 0x" ); in Render()
104 (void)DEMORFPrintf( printX, printY, 0, "%s", g_hexBuf ); in Render()
113 printY = (s16)(LIST_BOX_TL_Y + ((LIST_BOX_ROWS + 1) * FONT_LEADING)); in Render()
117 (void)DEMORFPrintf( printX, printY, 0, "%d", frames ); in Render()
124 printY = HELP_BOX_TL_Y - FONT_LEADING; in Render()
126 (void)DEMORFPrintf( printX, printY, 0, "Delete this friend info? (A/B)" ); in Render()
135 printY = (s16)(LIST_BOX_TL_Y + (LIST_BOX_ROWS * FONT_LEADING)); in Render()
136 (void)DEMORFPrintf( printX, printY, 0, "<1>: Show help" ); in Render()
141 printY = HELP_BOX_TL_Y; in Render()
142 (void)DEMORFPrintf( printX, printY, 0, "<Up/Down>:\n" in Render()
150 (void)DEMORFPrintf( printX, printY, 0, "\n\n\n\n\n\nHide help" ); in Render()
156 (void)DEMORFPrintf( printX, printY, 0, "Select\n" in Render()
167 (void)DEMORFPrintf( printX, printY, 0, "Select\n" in Render()
180 (void)DEMORFPrintf( printX, printY, 0, "Select\n" in Render()
191 (void)DEMORFPrintf( printX, printY, 0, "Select\n" in Render()
202 (void)DEMORFPrintf( printX, printY, 0, "Select\n" in Render()
213 (void)DEMORFPrintf( printX, printY, 0, "Select\n" in Render()
224 (void)DEMORFPrintf( printX, printY, 0, "-\n" in Render()
259 s16 printY = LIST_BOX_TL_Y; in RenderFriendList() local
277 (void)DEMORFPrintf( printX, printY, 0, "[%03u", idxFriend ); in RenderFriendList()
279 printX += DEMORFPrintf( printX, printY, 0, "] " ); in RenderFriendList()
281 (void)DEMORFPrintf( printX, printY, 0, "%s", g_nameBuf[idxBuf] ); in RenderFriendList()
284 printY += FONT_LEADING; in RenderFriendList()
299 s16 printY = INFO_BOX_TL_Y; in RenderFriendInfo() local
324 (void)DEMORFPrintf( printX, printY, 0, "%s:", STR_EDIT_ITEM[iItem] ); in RenderFriendInfo()
326 printY += 2 * FONT_LEADING; in RenderFriendInfo()
330 printY = INFO_BOX_TL_Y; in RenderFriendInfo()
335 PrintType( printX, printY, g_tempInfo ); printY += 2 * FONT_LEADING; in RenderFriendInfo()
336 PrintStatus( printX, printY, g_tempInfo ); printY += 2 * FONT_LEADING; in RenderFriendInfo()
337 PrintFdId( printX, printY, g_tempInfo ); printY += 2 * FONT_LEADING; in RenderFriendInfo()
338 PrintName( printX, printY, g_tempInfo ); printY += 2 * FONT_LEADING; in RenderFriendInfo()
339 PrintAddress( printX, printY, g_tempInfo ); in RenderFriendInfo()
343 PrintTypeCore( printX, printY, g_editFriendInfo.type, g_state == STATE_EDIT_TYPE ); in RenderFriendInfo()
344 printY += 2 * FONT_LEADING; in RenderFriendInfo()
346 PrintStatusCore( printX, printY, g_editFriendInfo.status, g_state == STATE_EDIT_STATUS ); in RenderFriendInfo()
347 printY += 2 * FONT_LEADING; in RenderFriendInfo()
349 PrintFdIdCore( printX, printY, g_editFriendInfo.fdId, g_state == STATE_EDIT_FD_ID ); in RenderFriendInfo()
350 printY += 2 * FONT_LEADING; in RenderFriendInfo()
352 PrintNameCore( printX, printY, g_editFriendInfo.name, g_state == STATE_EDIT_NAME ); in RenderFriendInfo()
353 printY += 2 * FONT_LEADING; in RenderFriendInfo()
357 PrintWiiId( printX, printY, g_editFriendInfo.wiiId, g_state == STATE_EDIT_WII_ID ); in RenderFriendInfo()
361 … PrintMailAddr( printX, printY, g_editFriendInfo.mailAddr, g_state == STATE_EDIT_MAIL_ADDR ); in RenderFriendInfo()
621 s16 printY = y; in PrintMailAddr() local
634 printY += LARGE_FONT_SIZE - FONT_SIZE; in PrintMailAddr()
640 printY += FONT_LEADING; in PrintMailAddr()
642 printX += DEMORFPrintf( printX, printY, 0, "%c", mailAddr[i] ); in PrintMailAddr()