aboutsummaryrefslogtreecommitdiff
path: root/engines/bladerunner/text_resource.cpp
diff options
context:
space:
mode:
authorThanasis Antoniou2019-06-28 15:30:05 +0300
committerThanasis Antoniou2019-06-28 15:30:44 +0300
commita81e3add2f08692030607c8cde7965475793b86b (patch)
treec7a897ded452d141d110dfb7d0e6d5e1ebf3176f /engines/bladerunner/text_resource.cpp
parentbd75898894e0f65663b1bc93c73d4ce0c7a91482 (diff)
downloadscummvm-rg350-a81e3add2f08692030607c8cde7965475793b86b.tar.gz
scummvm-rg350-a81e3add2f08692030607c8cde7965475793b86b.tar.bz2
scummvm-rg350-a81e3add2f08692030607c8cde7965475793b86b.zip
BLADERUNNER: JANITORIAL: Code formatting fixes
Diffstat (limited to 'engines/bladerunner/text_resource.cpp')
-rw-r--r--engines/bladerunner/text_resource.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/bladerunner/text_resource.cpp b/engines/bladerunner/text_resource.cpp
index f6d9657376..3e96da2921 100644
--- a/engines/bladerunner/text_resource.cpp
+++ b/engines/bladerunner/text_resource.cpp
@@ -107,7 +107,7 @@ const char *TextResource::getText(uint32 id) const {
const char *TextResource::getOuttakeTextByFrame(uint32 frame) const {
for (uint32 i = 0; i != _count; ++i) {
//debug("Checking %d - so within: %d , %d", _ids[i], (0x0000FFFF & _ids[i]), ((_ids[i] >> 16) & 0x0000FFFF ) );
- if ((frame >= (0x0000FFFF & _ids[i]) ) && (frame < ((_ids[i] >> 16) & 0x0000FFFF ) )){
+ if ((frame >= (0x0000FFFF & _ids[i]) ) && (frame < ((_ids[i] >> 16) & 0x0000FFFF ) )) {
// we found an id with lower 16bits smaller or equal to our frame key
// and with higher 16 bits higher than the frame key
return _strings + _offsets[i];