repo.or.cz
/
rofl0r-gnuboy.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
fix some gcc warnings
[rofl0r-gnuboy.git]
/
palette.h
blob
e47d8cef1cc309a7348a9b750c5197de89fad428
1
#ifndef PALETTE_H
2
#define PALETTE_H
3
4
#include
"defs.h"
5
6
void
pal_lock
(
byte n
);
7
void
pal_release
(
byte n
);
8
void
pal_expire
();
9
void
pal_set332
();
10
byte
pal_getcolor
(
int
c
,
int
r
,
int
g
,
int
b
);
11
12
#endif
13