diff options
Diffstat (limited to 'engines/prince')
-rw-r--r-- | engines/prince/prince.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/prince/prince.h b/engines/prince/prince.h index e0b9490c37..9048bd5e81 100644 --- a/engines/prince/prince.h +++ b/engines/prince/prince.h @@ -184,7 +184,7 @@ struct Anim { case kAnimX: return _x; default: - error("getAnimData() - Wrong offset type: %d", (int) offset); + error("getAnimData() - Wrong offset type: %d", (int)offset); } } @@ -192,7 +192,7 @@ struct Anim { if (offset == kAnimX) { _x = value; } else { - error("setAnimData() - Wrong offset: %d, value: %d", (int) offset, value); + error("setAnimData() - Wrong offset: %d, value: %d", (int)offset, value); } } }; |