mirror of
https://github.com/PCSX2/pcsx2.git
synced 2025-04-02 10:52:54 -04:00
git-svn-id: http://pcsx2.googlecode.com/svn/branches/wxgui@732 96395faa-99c1-11dd-bbfe-3dabce05a288
17 lines
297 B
C
17 lines
297 B
C
/* XPM */
|
|
static const char * cross_xpm[] = {
|
|
/* columns rows colors chars-per-pixel */
|
|
"10 10 2 1",
|
|
" c Gray0",
|
|
"# c None",
|
|
/* pixels */
|
|
" ######## ",
|
|
" #### ",
|
|
"# ## #",
|
|
"## ##",
|
|
"### ###",
|
|
"### ###",
|
|
"## ##",
|
|
"# ## #",
|
|
" #### ",
|
|
" ###### "};
|