Lines Matching refs:printX

84     s16     printX;  in Render()  local
100 printX = HEX_BOX_TL_X; in Render()
102 printX += DEMORFPrintf( printX, printY, 0, "(hex) 0x" ); in Render()
104 (void)DEMORFPrintf( printX, printY, 0, "%s", g_hexBuf ); in Render()
112 printX = LIST_BOX_TL_X; in Render()
117 (void)DEMORFPrintf( printX, printY, 0, "%d", frames ); in Render()
123 printX = HELP_BOX_TL_X; in Render()
126 (void)DEMORFPrintf( printX, printY, 0, "Delete this friend info? (A/B)" ); in Render()
134printX = (s16)(g_screenWidth - (2 * FONT_SIZE) - DEMOGetRFTextWidth( "<1>: Show help" )); in Render()
136 (void)DEMORFPrintf( printX, printY, 0, "<1>: Show help" ); in Render()
140 printX = HELP_BOX_TL_X; in Render()
142 (void)DEMORFPrintf( printX, printY, 0, "<Up/Down>:\n" in Render()
149 printX += DEMOGetRFTextWidth( "<00000/0000>: " ); 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()
258 s16 printX; in RenderFriendList() local
276 printX = LIST_BOX_TL_X; in RenderFriendList()
277 (void)DEMORFPrintf( printX, printY, 0, "[%03u", idxFriend ); in RenderFriendList()
278 printX += DEMOGetRFTextWidth( "[000" ); in RenderFriendList()
279 printX += DEMORFPrintf( printX, printY, 0, "] " ); in RenderFriendList()
281 (void)DEMORFPrintf( printX, printY, 0, "%s", g_nameBuf[idxBuf] ); in RenderFriendList()
298 s16 printX = INFO_BOX_TL_X; in RenderFriendInfo() local
324 (void)DEMORFPrintf( printX, printY, 0, "%s:", STR_EDIT_ITEM[iItem] ); in RenderFriendInfo()
329 printX += (s16)DEMOGetRFTextWidth( "00000000: " ); 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()
346 PrintStatusCore( printX, printY, g_editFriendInfo.status, g_state == STATE_EDIT_STATUS ); in RenderFriendInfo()
349 PrintFdIdCore( printX, printY, g_editFriendInfo.fdId, g_state == STATE_EDIT_FD_ID ); in RenderFriendInfo()
352 PrintNameCore( printX, printY, g_editFriendInfo.name, g_state == STATE_EDIT_NAME ); 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()
620 s16 printX = x; in PrintMailAddr() local
637 if ( g_screenWidth < (s16)(printX + width + (2 * FONT_SIZE)) ) in PrintMailAddr()
639 printX = x; in PrintMailAddr()
642 printX += DEMORFPrintf( printX, printY, 0, "%c", mailAddr[i] ); in PrintMailAddr()