Skip the = or \n before grabbing Zip_File.

Change-Id: I0454f8fc3cbe037fac63ef5861f8f373e4654d49
diff --git a/twrp.cpp b/twrp.cpp
index 56ffedb..82704b5 100644
--- a/twrp.cpp
+++ b/twrp.cpp
@@ -157,6 +157,9 @@
 				index2 = 0;
 				while (*ptr != '=' && *ptr != '\n')
 					ptr++;
+				// skip the = before grabbing Zip_File
+				while (*ptr == '=')
+					ptr++;
 				if (*ptr) {
 					Zip_File = ptr;
 				} else