ACCESS: Tex2 - Start implementing takePicture()
This commit is contained in:
parent
bb640a85a5
commit
452c5e59c5
8 changed files with 107 additions and 3 deletions
|
@ -306,10 +306,9 @@ void Scripts::cmdPrint_v2() {
|
|||
printString(msg);
|
||||
}
|
||||
|
||||
void Scripts::cmdPrint_v1() {
|
||||
void Scripts::doCmdPrint_v1(Common::String msg) {
|
||||
_vm->_screen->_printOrg = Common::Point(20, 42);
|
||||
_vm->_screen->_printStart = Common::Point(20, 32);
|
||||
Common::String msg = readString();
|
||||
_vm->_bubbleBox->placeBubble(msg);
|
||||
_vm->_events->waitKeyMouse();
|
||||
_vm->_events->hideCursor();
|
||||
|
@ -318,6 +317,11 @@ void Scripts::cmdPrint_v1() {
|
|||
findNull();
|
||||
}
|
||||
|
||||
void Scripts::cmdPrint_v1() {
|
||||
Common::String msg = readString();
|
||||
doCmdPrint_v1(msg);
|
||||
}
|
||||
|
||||
void Scripts::printString(const Common::String &msg) {
|
||||
if (_vm->getGameID() != GType_MartianMemorandum) {
|
||||
_vm->_screen->_printOrg = Common::Point(20, 42);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue