![]() | ![]() ![]() |
| Home · Downloads · Your Account · Submit News |
|
Documentation Homepage HAMLib reference Back to HAM Homepage |
|
Functions | |
| void | ham_VBAText (char *fmt,...) |
| Output formatted string on VBA debug console | |
| void | ham_DrawText (u8 x, u8 y, char *fmt,...) |
| Output formatted string on a tiles mode GBA screen | |
| void | ham_InitText (u8 bgno) |
| Initialize the HAM DrawText system | |
| void | ham_SetTextCol (u8 front_col, u8 back_col) |
| Set the foreground and background color numbers for the DrawText system | |
| void | ham_DeInitText (void) |
| De-Initialize the DrawText system | |
|
|
De-Initialize the DrawText system
This will completely remove the ham_DrawText system and all resources reserved for it. See also: ham_InitText() |
|
||||||||||||||||||||
|
Output formatted string on a tiles mode GBA screen
ham_DrawText(1,1,"My Name is %s I am %d years old",string_ptr,int yrs_old); ATTENTION: This function is powerful, but VERY slow and should not be used in production code. It should only be used for debugging purposes. See also: ham_VBAText() |
|
|
Initialize the HAM DrawText system
See also: ham_DrawText() ham_SetBgMode() |
|
||||||||||||
|
Set the foreground and background color numbers for the DrawText system
|
|
||||||||||||
|
Output formatted string on VBA debug console
ham_VBAText("My Name is %s I am %d years old",string_ptr,int yrs_old); ATTENTION: This function is powerful, but pretty slow and should not be used in production code. See also: ham_DrawText() |