Formatting.

svn-id: r46755
This commit is contained in:
Johannes Schickel 2009-12-30 15:48:43 +00:00
parent 7475bbbc3f
commit fd2d0fc718

View file

@ -634,7 +634,6 @@ reg_t kListAllTrue(EngineState *s, int argc, reg_t *argv) {
// In SCI2.1, all the list functions were merged in one
reg_t kList(EngineState *s, int argc, reg_t *argv) {
switch (argv[0].toUint16()) {
case 0:
return kNewList(s, argc - 1, argv + 1);
@ -692,7 +691,6 @@ reg_t kList(EngineState *s, int argc, reg_t *argv) {
warning("kList: Unhandled case %d", argv[0].toUint16());
return NULL_REG;
}
}
#endif