mirror of
https://github.com/RPCS3/rpcs3.git
synced 2024-11-17 17:11:23 +00:00
18 lines
280 B
C
18 lines
280 B
C
/* XPM */
|
|
static const char * cross_xpm[] = {
|
|
/* columns rows colors chars-per-pixel */
|
|
"10 10 2 1",
|
|
" c Gray0",
|
|
"# c None",
|
|
/* pixels */
|
|
" ######## ",
|
|
" #### ",
|
|
"# ## #",
|
|
"## ##",
|
|
"### ###",
|
|
"### ###",
|
|
"## ##",
|
|
"# ## #",
|
|
" #### ",
|
|
" ###### "};
|