import: hall of fame graphic for the hall-of-fame page

This commit is contained in:
dwsJason 2018-08-17 21:47:15 -04:00
parent 10b4d20370
commit 05c91aba6b
3 changed files with 10 additions and 0 deletions

View File

@ -33,13 +33,19 @@ rem
lz4 -c2 bmp\splash.SHR#C10000 data\splash.lz4
lz4 -c2 bmp\img_splash16.SHR#C10000 data\img_splash16.lz4
rem
rem Hall of Fame
rem
lz4 -c2 data\pics\haf.gs data\pic_haf.lz4
rem
rem Convert the title page into an object file
rem
iix mkobj splash_lz4 data:splash.lz4 data:splash.a
iix mkobj img_splash_lz4 data:img_splash16.lz4 data:img_splash.a
iix mkobj pic_haf_lz4 data:pic_haf.lz4 data:pic_haf.a
rem
rem Create Static Linked Binary data library
rem
iix makelib -P data.lib +data\splash.a
iix makelib -P data.lib +data\img_splash.a
iix makelib -P data.lib +data\pic_haf.a

BIN
data/pics/haf.gs Normal file

Binary file not shown.

View File

@ -25,6 +25,7 @@
#pragma noroot
segment "screen";
extern img_t splash_lz4;
extern img_t pic_haf_lz4;
#endif
/*
@ -120,6 +121,9 @@ screen_introMain(void)
#ifdef GFXST
draw_pic(0, 0, 0x140, 0x20, pic_haf);
#endif
#ifdef GFXGS
draw_img(&pic_haf_lz4);
#endif
/* hall of fame content */
draw_setfb(56, 40);