what was i thinking

This commit is contained in:
cuckydev 2019-02-10 09:34:05 -05:00
parent 92b798610c
commit ecc9f758b6
2 changed files with 2 additions and 2 deletions

View file

@ -32,7 +32,7 @@ struct ISLAND_SPRITE
int y;
};
#define MAX_STRIP ((WINDOW_HEIGHT + 14) / 15)
#define MAX_STRIP (WINDOW_HEIGHT / 16) + 1
void ActionStripper();
void PutStripper();

View file

@ -53,7 +53,7 @@ bool LoadGenericData()
MakeSurface_Generic(40, 240, 29); //Unknown?
MakeSurface_Generic(320, 240, SURFACE_ID_LEVEL_SPRITESET_1);
MakeSurface_Generic(320, 240, SURFACE_ID_LEVEL_SPRITESET_2);
MakeSurface_Generic(WINDOW_WIDTH, 15 * MAX_STRIP, SURFACE_ID_CREDIT_CAST);
MakeSurface_Generic(WINDOW_WIDTH, 16 * MAX_STRIP, SURFACE_ID_CREDIT_CAST);
char path[0x100];
uint8_t *buf = nullptr;