repo.or.cz
/
lsnes.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Fix number of compile errors and warnings with GCC 14
[lsnes.git]
/
src
/
fonts
/
wrapper.cpp
blob
f9353de72f7dd05944f6ad7419dfddcfb8b763b9
1
#include
"library/framebuffer.hpp"
2
3
#include <cstring>
4
5
extern
const char
*
font_hex_data
;
6
framebuffer
::
font main_font
;
7
8
void
do_init_font
()
9
{
10
static bool
flag
=
false
;
11
if
(
flag
)
12
return
;
13
main_font
.
load_hex
(
font_hex_data
,
strlen
(
font_hex_data
));
14
flag
=
true
;
15
}