Function PrintHexInt

From Uzebox Wiki
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.
Prototype

void PrintHexInt(char x,char y,int value);

Description

Prints an int in hexadecimal format at the specified location.

Parameters
  • x,y: Location to print value.
  • value: Value to print in hexadecimal.
Returns

Void

Video Modes

All

Since

V3

Example:

//print "ABCD" on screen
PrintHexInt(10,10,0xabcd);