aboutsummaryrefslogtreecommitdiff
path: root/archivers/ccmix/files/patch-src_gmdedit_gmdedit.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'archivers/ccmix/files/patch-src_gmdedit_gmdedit.cpp')
-rw-r--r--archivers/ccmix/files/patch-src_gmdedit_gmdedit.cpp24
1 files changed, 24 insertions, 0 deletions
diff --git a/archivers/ccmix/files/patch-src_gmdedit_gmdedit.cpp b/archivers/ccmix/files/patch-src_gmdedit_gmdedit.cpp
new file mode 100644
index 000000000000..90450086b9a4
--- /dev/null
+++ b/archivers/ccmix/files/patch-src_gmdedit_gmdedit.cpp
@@ -0,0 +1,24 @@
+--- src/gmdedit/gmdedit.cpp.orig 2017-06-12 14:07:35 UTC
++++ src/gmdedit/gmdedit.cpp
+@@ -83,10 +83,6 @@ int main(int argc, char** argv) {
+ std::fstream ofh;
+ std::vector<t_namepair> names;
+
+- ifh.open(argv[1], std::ios_base::in|std::ios_base::binary);
+- gmd.readDB(ifh);
+- ifh.close();
+-
+ if(argc < 4){
+ //menu();
+ std::cout << "Use: gmdedit gmdpath additionspath newgmdpath\n";
+@@ -106,6 +102,10 @@ int main(int argc, char** argv) {
+ }
+ }
+ }
++
++ ifh.open(argv[1], std::ios_base::in|std::ios_base::binary);
++ gmd.readDB(ifh);
++ ifh.close();
+
+ for(unsigned int i = 0; i < names.size(); i++) {
+ gmd.addName(game, names[i].first, names[i].second);