mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-13 21:31:53 +00:00
Might as well merge, not need for larger sizes.
svn-id: r11804
This commit is contained in:
parent
7fbb3e0559
commit
a7201f0dac
@ -56,17 +56,17 @@ struct Item {
|
|||||||
uint16 sibling;
|
uint16 sibling;
|
||||||
int16 unk1;
|
int16 unk1;
|
||||||
int16 unk2;
|
int16 unk2;
|
||||||
int16 unk3; /* signed int */
|
int16 unk3; /* signed int */
|
||||||
uint16 unk4;
|
uint16 unk4;
|
||||||
uint16 xxx_1; /* unused? */
|
uint16 xxx_1; /* unused? */
|
||||||
Child *children;
|
Child *children;
|
||||||
|
|
||||||
Item() { memset(this, 0, sizeof(*this)); }
|
Item() { memset(this, 0, sizeof(*this)); }
|
||||||
};
|
};
|
||||||
|
|
||||||
struct Subroutine {
|
struct Subroutine {
|
||||||
uint16 id; /* subroutine ID */
|
uint16 id; /* subroutine ID */
|
||||||
uint16 first; /* offset from subroutine start to first subroutine line */
|
uint16 first; /* offset from subroutine start to first subroutine line */
|
||||||
Subroutine *next; /* next subroutine in linked list */
|
Subroutine *next; /* next subroutine in linked list */
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -91,7 +91,7 @@ struct FillOrCopyStruct {
|
|||||||
uint16 width, height;
|
uint16 width, height;
|
||||||
uint16 textColumn, textRow;
|
uint16 textColumn, textRow;
|
||||||
uint8 textColumnOffset, textLength, textMaxLength;
|
uint8 textColumnOffset, textLength, textMaxLength;
|
||||||
uint8 fill_color, text_color, unk5;
|
uint8 fill_color, text_color, unk5;
|
||||||
FillOrCopyData *fcs_data;
|
FillOrCopyData *fcs_data;
|
||||||
FillOrCopyStruct() { memset(this, 0, sizeof(*this)); }
|
FillOrCopyStruct() { memset(this, 0, sizeof(*this)); }
|
||||||
};
|
};
|
||||||
@ -119,15 +119,6 @@ struct TimeEvent {
|
|||||||
};
|
};
|
||||||
|
|
||||||
struct GameSpecificSettings {
|
struct GameSpecificSettings {
|
||||||
#ifndef __PALM_OS__
|
|
||||||
const char *gme_filename;
|
|
||||||
const char *wav_filename;
|
|
||||||
const char *voc_filename;
|
|
||||||
const char *mp3_filename;
|
|
||||||
const char *voc_effects_filename;
|
|
||||||
const char *mp3_effects_filename;
|
|
||||||
const char *gamepc_filename;
|
|
||||||
#else
|
|
||||||
const char gme_filename[12];
|
const char gme_filename[12];
|
||||||
const char wav_filename[12];
|
const char wav_filename[12];
|
||||||
const char voc_filename[12];
|
const char voc_filename[12];
|
||||||
@ -135,7 +126,6 @@ struct GameSpecificSettings {
|
|||||||
const char voc_effects_filename[12];
|
const char voc_effects_filename[12];
|
||||||
const char mp3_effects_filename[12];
|
const char mp3_effects_filename[12];
|
||||||
const char gamepc_filename[12];
|
const char gamepc_filename[12];
|
||||||
#endif
|
|
||||||
};
|
};
|
||||||
|
|
||||||
} // End of namespace Simon
|
} // End of namespace Simon
|
||||||
|
Loading…
Reference in New Issue
Block a user