From b979709f50984428741c516bad4a0275a83f7a1d Mon Sep 17 00:00:00 2001 From: AJ Kelly Date: Tue, 6 Mar 2012 20:18:03 -0600 Subject: [PATCH] since ScreenEvalSummary is calling the NextScreen branch like a function, let's make it a function and be done with it. this should fix a crash. --- Themes/_fallback/Scripts/02 Branches.lua | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Themes/_fallback/Scripts/02 Branches.lua b/Themes/_fallback/Scripts/02 Branches.lua index 4034193cfa..ccb2ec8888 100644 --- a/Themes/_fallback/Scripts/02 Branches.lua +++ b/Themes/_fallback/Scripts/02 Branches.lua @@ -204,7 +204,9 @@ Branch = { end end end, - AfterSummary = "ScreenProfileSaveSummary", + AfterSummary = function() + return "ScreenProfileSaveSummary" + end, Network = function() return IsNetConnected() and "ScreenTitleMenu" or "ScreenTitleMenu" end,