diff options
author | Paul Gilbert | 2018-08-17 20:30:20 -0700 |
---|---|---|
committer | Paul Gilbert | 2018-08-17 20:30:20 -0700 |
commit | 11e33ba3fc1b65789358485fa50cdbc0cf26aac7 (patch) | |
tree | ebb245cf6617e1ac0b35bf3681307bcbc541b230 /engines/prince | |
parent | c8d3af3874d7c814a9f1f03ad740c3e9f8386eaa (diff) | |
download | scummvm-rg350-11e33ba3fc1b65789358485fa50cdbc0cf26aac7.tar.gz scummvm-rg350-11e33ba3fc1b65789358485fa50cdbc0cf26aac7.tar.bz2 scummvm-rg350-11e33ba3fc1b65789358485fa50cdbc0cf26aac7.zip |
JANITORIAL: Removing trailing spaces after int casts
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); } } }; |