[Scummvm-git-logs] scummvm master -> 96b5006ea1704719a6f8885875024fb60af2fa07
digitall
547637+digitall at users.noreply.github.com
Mon May 18 04:56:33 UTC 2020
This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .
Summary:
96b5006ea1 PETKA: Fix GCC Shadowing Warnings
Commit: 96b5006ea1704719a6f8885875024fb60af2fa07
https://github.com/scummvm/scummvm/commit/96b5006ea1704719a6f8885875024fb60af2fa07
Author: D G Turner (digitall at scummvm.org)
Date: 2020-05-18T05:54:11+01:00
Commit Message:
PETKA: Fix GCC Shadowing Warnings
Changed paths:
engines/petka/base.h
diff --git a/engines/petka/base.h b/engines/petka/base.h
index 83fb105562..b8216c9eb1 100644
--- a/engines/petka/base.h
+++ b/engines/petka/base.h
@@ -98,14 +98,14 @@ class QMessageObject;
struct QMessage {
QMessage() {}
- QMessage(uint16 objId, uint16 opcode, uint16 arg1, int16 arg2, int16 arg3, QMessageObject *sender, int unk) {
- this->objId = objId;
- this->opcode = opcode;
- this->arg1 = arg1;
- this->arg2 = arg2;
- this->arg3 = arg3;
- this->sender = sender;
- this->unk = unk;
+ QMessage(uint16 _objId, uint16 _opcode, uint16 _arg1, int16 _arg2, int16 _arg3, QMessageObject *_sender, int _unk) {
+ this->objId = _objId;
+ this->opcode = _opcode;
+ this->arg1 = _arg1;
+ this->arg2 = _arg2;
+ this->arg3 = _arg3;
+ this->sender = _sender;
+ this->unk = _unk;
}
uint16 objId;
More information about the Scummvm-git-logs
mailing list