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.

This commit is contained in:
AJ Kelly
2012-03-06 20:18:03 -06:00
parent 6ae5dcc6fb
commit b979709f50
+3 -1
View File
@@ -204,7 +204,9 @@ Branch = {
end
end
end,
AfterSummary = "ScreenProfileSaveSummary",
AfterSummary = function()
return "ScreenProfileSaveSummary"
end,
Network = function()
return IsNetConnected() and "ScreenTitleMenu" or "ScreenTitleMenu"
end,