mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-14 21:59:17 +00:00
DREAMWEB: 'examIcon' ported to C++
This commit is contained in:
parent
18e84f9c11
commit
a192f58539
@ -211,6 +211,7 @@ generator = cpp(context, "DreamGen", blacklist = [
|
||||
'entersymbol',
|
||||
'eraseoldobs',
|
||||
'error',
|
||||
'examicon',
|
||||
'examineob',
|
||||
'examineobtext',
|
||||
'facerightway',
|
||||
|
@ -2926,16 +2926,6 @@ void DreamGenContext::openOb() {
|
||||
cs.word(bx) = ax;
|
||||
}
|
||||
|
||||
void DreamGenContext::examIcon() {
|
||||
STACK_CHECK;
|
||||
ds = data.word(kIcons2);
|
||||
di = 254;
|
||||
bx = 5;
|
||||
al = 3;
|
||||
ah = 0;
|
||||
showFrame();
|
||||
}
|
||||
|
||||
void DreamGenContext::describeOb() {
|
||||
STACK_CHECK;
|
||||
getObTextStart();
|
||||
|
@ -831,7 +831,6 @@ public:
|
||||
void deleteExText();
|
||||
void foghornSound();
|
||||
void liftNoise();
|
||||
void examIcon();
|
||||
void showGun();
|
||||
void louisChair();
|
||||
void locationPic();
|
||||
|
@ -2825,6 +2825,10 @@ void DreamGenContext::panelIcons1() {
|
||||
showWatch();
|
||||
}
|
||||
|
||||
void DreamGenContext::examIcon() {
|
||||
showFrame(icons2(), 254, 5, 3, 0);
|
||||
}
|
||||
|
||||
uint8 DreamGenContext::getLocation(uint8 index) {
|
||||
return data.byte(kRoomscango + index);
|
||||
}
|
||||
|
@ -409,6 +409,7 @@
|
||||
void showExit();
|
||||
void showMan();
|
||||
void panelIcons1();
|
||||
void examIcon();
|
||||
void buttonOne();
|
||||
void buttonTwo();
|
||||
void buttonThree();
|
||||
|
Loading…
Reference in New Issue
Block a user