Reset progress bar in ORS

Change-Id: Ia7df2fa80712dc9ff7fda97261fefa33ce823ae0
diff --git a/openrecoveryscript.cpp b/openrecoveryscript.cpp
index 6df1207..e319a9c 100644
--- a/openrecoveryscript.cpp
+++ b/openrecoveryscript.cpp
@@ -75,6 +75,7 @@
 
 	if (fp != NULL) {
 		DataManager::SetValue(TW_SIMULATE_ACTIONS, 0);
+		DataManager::SetValue("ui_progress", 0); // Reset the progress bar
 		while (fgets(script_line, SCRIPT_COMMAND_SIZE, fp) != NULL && ret_val == 0) {
 			cindex = 0;
 			line_len = strlen(script_line);
@@ -572,4 +573,4 @@
 	if (gui_startPage("action_page") != 0) {
 		LOGE("Failed to load OpenRecoveryScript GUI page.\n");
 	}
-}
\ No newline at end of file
+}