mirror of
https://github.com/libretro/scummvm.git
synced 2025-02-25 22:07:34 +00:00
parent
70df5b782c
commit
d875bb69fe
@ -157,7 +157,9 @@ public:
|
||||
byte *getActorName();
|
||||
void startWalkActor(int x, int y, int dir);
|
||||
void stopActorMoving();
|
||||
protected:
|
||||
void startWalkAnim(int cmd, int angle);
|
||||
public:
|
||||
void startAnimActor(int frame);
|
||||
|
||||
void remapActorPalette(int r_fact, int g_fact, int b_fact, int threshold);
|
||||
|
@ -1167,7 +1167,7 @@ void Scumm_v6::o6_loadRoomWithEgo() {
|
||||
|
||||
_fullRedraw = 1;
|
||||
|
||||
if (x != -1) {
|
||||
if (x != -1 && x != 0x7FFFFFFF) {
|
||||
a->startWalkActor(x, y, -1);
|
||||
}
|
||||
}
|
||||
|
@ -690,8 +690,6 @@ void Scumm::enqueueText(const byte *text, int x, int y, byte color, byte charset
|
||||
}
|
||||
|
||||
void Scumm::drawBlastTexts() {
|
||||
// FIXME
|
||||
|
||||
byte *buf;
|
||||
int c;
|
||||
int i;
|
||||
|
Loading…
x
Reference in New Issue
Block a user