projects
/
dosdemo
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
con.fmt caused problems in dos. renamed to console.fnt
[dosdemo]
/
src
/
tinyfps.h
1
#ifndef TINY_FPS_H
2
#define TINY_FPS_H
3
4
#define FPS_FONT_WIDTH 4
5
#define FPS_FONT_HEIGHT 5
6
#define FPS_FONTS_NUM 10
7
#define FPS_FONT_NUM_PIXELS (FPS_FONTS_NUM * FPS_FONT_WIDTH * FPS_FONT_HEIGHT)
8
9
void initFpsFonts();
10
void drawFps(unsigned short *vram);
11
12
#endif