[Scummvm-git-logs] scummvm master -> dfea702e07d234505c6dd9ae9de9336193019e5a

digitall 547637+digitall at users.noreply.github.com
Mon Mar 15 23:09:09 UTC 2021


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:
dfea702e07 TINSEL: Add a missing case to switch statement


Commit: dfea702e07d234505c6dd9ae9de9336193019e5a
    https://github.com/scummvm/scummvm/commit/dfea702e07d234505c6dd9ae9de9336193019e5a
Author: Orgad Shaneh (orgads at gmail.com)
Date: 2021-03-15T23:09:07Z

Commit Message:
TINSEL: Add a missing case to switch statement

It's not really needed, only to satisfy the compilers.

Changed paths:
    engines/tinsel/bmv.cpp


diff --git a/engines/tinsel/bmv.cpp b/engines/tinsel/bmv.cpp
index bdf17d346a..2238abdbf1 100644
--- a/engines/tinsel/bmv.cpp
+++ b/engines/tinsel/bmv.cpp
@@ -339,6 +339,8 @@ void BMVPlayer::t3DoOperation(BMV_OP op, uint32 len, const byte **src, byte **ds
 			}
 			break;
 		}
+		case BMV_OP_COUNT:
+			break;
 	}
 }
 




More information about the Scummvm-git-logs mailing list