mirror of
https://github.com/scummvm/scummvm.git
synced 2026-06-20 05:45:29 +00:00
fixed warnings
This commit is contained in:
+5
-5
@@ -1455,9 +1455,9 @@ static void AddShadowPlane() {
|
||||
static void ActivateActorShadow() {
|
||||
DEBUG_FUNCTION();
|
||||
|
||||
Actor *act = check_actor(1);
|
||||
int shadowId = check_int(2);
|
||||
bool state = getbool(3);
|
||||
/*Actor *act = */check_actor(1);
|
||||
/*int shadowId = */check_int(2);
|
||||
/*bool state = */getbool(3);
|
||||
|
||||
//act->setActivateShadow(shadowId, state);
|
||||
}
|
||||
@@ -1465,8 +1465,8 @@ static void ActivateActorShadow() {
|
||||
static void SetActorShadowValid() {
|
||||
DEBUG_FUNCTION();
|
||||
|
||||
Actor *act = check_actor(1);
|
||||
int valid = check_int(2);
|
||||
/*Actor *act = */check_actor(1);
|
||||
/*int valid = */check_int(2);
|
||||
|
||||
//act->setShadowValid(valid);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user