[Scummvm-cvs-logs] CVS: scummvm/scumm scumm.cpp,NONE,1.1 module.mk,1.35,1.36 scummvm.cpp,2.615,NONE

Max Horn fingolfin at users.sourceforge.net
Sat Mar 6 19:57:07 CET 2004


Update of /cvsroot/scummvm/scummvm/scumm
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv11399/scumm

Modified Files:
	module.mk 
Added Files:
	scumm.cpp 
Removed Files:
	scummvm.cpp 
Log Message:
renamed scumm/scummvm.cpp to scumm/scumm.cpp

--- NEW FILE: scumm.cpp ---
/* ScummVM - Scumm Interpreter
 * Copyright (C) 2001  Ludvig Strigeus
 * Copyright (C) 2001-2004 The ScummVM project
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * as published by the Free Software Foundation; either version 2
 * of the License, or (at your option) any later version.

 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.

 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
 *
 * $Header: /cvsroot/scummvm/scummvm/scumm/scumm.cpp,v 1.1 2004/03/07 03:32:54 fingolfin Exp $
[...2984 lines suppressed...]
		} else {
			engine = new ScummEngine_v6(detector, syst, game);
		}
		break;
	case 7:
		engine = new ScummEngine_v7(detector, syst, game);
		break;
#ifndef __PALM_OS__
	case 8:
		engine = new ScummEngine_v8(detector, syst, game);
		break;
#endif
	default:
		error("Engine_SCUMM_create(): Unknown version of game engine");
	}

	return engine;
}

REGISTER_PLUGIN("Scumm Engine", Engine_SCUMM_gameList, Engine_SCUMM_create, Engine_SCUMM_detectGames)

Index: module.mk
===================================================================
RCS file: /cvsroot/scummvm/scummvm/scumm/module.mk,v
retrieving revision 1.35
retrieving revision 1.36
diff -u -d -r1.35 -r1.36
--- module.mk	1 Mar 2004 05:57:30 -0000	1.35
+++ module.mk	7 Mar 2004 03:32:53 -0000	1.36
@@ -39,7 +39,7 @@
 	scumm/script_v6he.o \
 	scumm/script_v7he.o \
 	scumm/script_v8.o \
-	scumm/scummvm.o \
+	scumm/scumm.o \
 	scumm/sound.o \
 	scumm/string.o \
 	scumm/usage_bits.o \

--- scummvm.cpp DELETED ---





More information about the Scummvm-git-logs mailing list