From 135612a3bd4b9bfb679bf727e0e97b88f66af417 Mon Sep 17 00:00:00 2001 From: adelikat Date: Thu, 4 Mar 2010 02:03:33 +0000 Subject: [PATCH] else if, not if --- src/movie.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/movie.cpp b/src/movie.cpp index 9bebcf43..32c7cc2e 100644 --- a/src/movie.cpp +++ b/src/movie.cpp @@ -346,7 +346,7 @@ void MovieData::installValue(std::string& key, std::string& val) //todo - use another config system, or drive this from a little data structure. because this is gross if(key == "FDS") installInt(val,fds); - if(key == "version") + else if(key == "version") installInt(val,version); else if(key == "emuVersion") installInt(val,emuVersion);