Function SetTileTable

From Uzebox Wiki
Revision as of 03:08, 4 March 2009 by Uze6666 (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
Prototype

void SetTileTable(const char *data);

Description

Defines the tile set to use for rendering the background.

Parameters
  • data: Pointer to tile data in PROGMEM.
Returns

Void

Video Modes

All

Since

V1

Example:

#include "data/mytiles.inc";
...
SetTileTable(mytiles);
ClearVram();
SetTile(10,10,1);