Background is now included as binary instead of being decoded from pcx.
The same is true for the shared palette.
This commit is contained in:
parent
a618d6d9f1
commit
58e4b04b80
File diff suppressed because one or more lines are too long
Binary file not shown.
|
@ -18,6 +18,8 @@
|
|||
//---------------------------------------------------------------------------------
|
||||
#include "helds_logo_pcx.h"
|
||||
#include "s_piece_bin.h"
|
||||
#include "helds_logo_new_bin.h"
|
||||
#include "helds_pal_bin.h"
|
||||
|
||||
//---------------------------------------------------------------------------------
|
||||
// storage space for palette data
|
||||
|
@ -54,8 +56,9 @@ int main(void)
|
|||
|
||||
// screen mode, background and objects to display
|
||||
SetMode( MODE_4 | BG2_ON | OBJ_ON );
|
||||
|
||||
DecodePCX(helds_logo_pcx, (u16*)VRAM , PaletteBuffer);
|
||||
|
||||
CpuFastSet(helds_logo_new_bin, (u16*)VRAM, COPY32 | helds_logo_new_bin_size/4);
|
||||
CpuFastSet(helds_pal_bin, PaletteBuffer, COPY32 | helds_pal_bin_size / 4);
|
||||
FadeToPalette( PaletteBuffer, 60);
|
||||
|
||||
CpuFastSet(s_piece_bin, BITMAP_OBJ_BASE_ADR, COPY32 | s_piece_bin_size/4);
|
||||
|
@ -66,7 +69,6 @@ int main(void)
|
|||
sprite.attr1 = OBJ_X(120);
|
||||
sprite.attr2 = OBJ_CHAR(512);
|
||||
|
||||
u16 i;
|
||||
u16* dst, *src;
|
||||
|
||||
while (1)
|
||||
|
|
Reference in New Issue