GRIM: Remove extra semicolons

This commit is contained in:
Joel Teichroeb 2012-05-05 22:59:51 -07:00
parent e63eda39bc
commit 115e3232b8
3 changed files with 3 additions and 3 deletions

View file

@ -271,7 +271,7 @@ bool BitmapData::loadTGA(Common::SeekableReadStream *data) {
data->seek(9, SEEK_CUR); data->seek(9, SEEK_CUR);
_width = data->readUint16LE(); _width = data->readUint16LE();
_height = data->readUint16LE();; _height = data->readUint16LE();
_format = 1; _format = 1;
_x = 0; _x = 0;
_y = 0; _y = 0;

View file

@ -240,7 +240,7 @@ static void io_writeto() {
} }
static void io_appendto() { static void io_appendto() {
const char *s = Common::lastPathComponent(luaL_check_string(FIRSTARG), '\\').c_str();; const char *s = Common::lastPathComponent(luaL_check_string(FIRSTARG), '\\').c_str();
Common::SeekableReadStream *inFile = NULL; Common::SeekableReadStream *inFile = NULL;
Common::SaveFileManager *saveFileMan = g_system->getSavefileManager(); Common::SaveFileManager *saveFileMan = g_system->getSavefileManager();
inFile = saveFileMan->openForLoading(s); inFile = saveFileMan->openForLoading(s);

View file

@ -270,7 +270,7 @@ void Lua_V1::SetSayLineDefaults() {
void Lua_V1::SayLine() { void Lua_V1::SayLine() {
int vol = 127, buffer = 64, paramId = 1, x = -1, y = -1; int vol = 127, buffer = 64, paramId = 1, x = -1, y = -1;
bool background = true; bool background = true;
const char *msgId = NULL;; const char *msgId = NULL;
Common::String msg; Common::String msg;
lua_Object paramObj = lua_getparam(paramId++); lua_Object paramObj = lua_getparam(paramId++);