summaryrefslogtreecommitdiff
path: root/font.c
blob: c077de2d18751d785b0c264c2e86fcd8a1515399 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#include "font.h"
#include "TZR.h"

static TZR_Uint ___font_spr = 0;

int font_init(const char *path)
{
	___font_spr = TZR_LoadResourceTyped(TZR_RES_IMAGE, path);
	if (___font_spr == 0)
		return 1;
	return 0;
}