- [FIX] La pilota de l'habitació 02 ja no te una ralla de pixels

- [FIX] Al pegar botonà en el logo el fondo se quedava de algún color durant la intro.
- [FIX] Al morir el malo que t'ha matat ja no es queda tot loco
- [FIX] Retocades un poc algunes portes on s'ha pogut
This commit is contained in:
2024-10-06 17:36:51 +02:00
parent 394773003a
commit 52d3916f8c
4 changed files with 4 additions and 1 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.7 KiB

After

Width:  |  Height:  |  Size: 2.7 KiB

View File

@@ -129,7 +129,7 @@ actor{
actor{ actor{
name: PILOTA name: PILOTA
bmp: altres.gif bmp: altres.gif
bmp-rect: 0 108 22 22 bmp-rect: 0 108 21 21
bmp-offset: -5 24 bmp-offset: -5 24
pos: 28 32 0 pos: 28 32 0
size: 8 8 2 size: 8 8 2

View File

@@ -1034,6 +1034,8 @@ namespace actor
act2->pos.z += 8; act2->pos.z += 8;
act2->anim_frame = 2; act2->anim_frame = 2;
act->anim_wait = act2->anim_wait = 1; act->anim_wait = act2->anim_wait = 1;
actor_t *other = first;
while (other) { other->flags &= ~FLAG_MOVING; other = other->next; }
actor::setDirty(act2); actor::setDirty(act2);
room::cycleColor(4); room::cycleColor(4);
return; return;

View File

@@ -17,6 +17,7 @@ namespace modules
void init() void init()
{ {
time = SDL_GetTicks(); time = SDL_GetTicks();
draw::restorecol(2);
draw::cls(2); draw::cls(2);
draw::swapcol(1, 9); draw::swapcol(1, 9);