merge
This commit is contained in:
@@ -13,6 +13,13 @@ _____________________________________________________________________________
|
|||||||
sm-ssc v1.2.4 | 20110???
|
sm-ssc v1.2.4 | 20110???
|
||||||
--------------------------------------------------------------------------------
|
--------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
20110317
|
||||||
|
--------
|
||||||
|
* [ScreenEdit] Fix bug number 222, where Steps disappeared if they weren't
|
||||||
|
saved. [AJ, Wolfman2000]
|
||||||
|
* [ScreenOptionsEdit] Fix bug number 186, where people could try to edit or
|
||||||
|
share songs when they didn't have any. [Wolfman2000]
|
||||||
|
|
||||||
20110316
|
20110316
|
||||||
--------
|
--------
|
||||||
* [NotesLoaderSMA] Allow for preliminary support of loading SMA files. This
|
* [NotesLoaderSMA] Allow for preliminary support of loading SMA files. This
|
||||||
|
|||||||
@@ -71,6 +71,13 @@ Branch = {
|
|||||||
end;
|
end;
|
||||||
return "ScreenSelectProfile";
|
return "ScreenSelectProfile";
|
||||||
end,
|
end,
|
||||||
|
OptionsEdit = function()
|
||||||
|
-- Similar to above, don't let anyone in here with 0 songs.
|
||||||
|
if SONGMAN:GetNumSongs() == 0 and SONGMAN:GetNumAdditionalSongs() == 0 then
|
||||||
|
return "ScreenHowToInstallSongs";
|
||||||
|
end;
|
||||||
|
return "ScreenOptionsEdit";
|
||||||
|
end,
|
||||||
AfterProfileLoad = function()
|
AfterProfileLoad = function()
|
||||||
return "ScreenSelectProfile"
|
return "ScreenSelectProfile"
|
||||||
end,
|
end,
|
||||||
|
|||||||
@@ -1657,7 +1657,7 @@ Choice1="applydefaultoptions;text,Game Start;screen,"..Branch.StartGame()
|
|||||||
Choice2="screen,ScreenNetworkOptions;text,Play Online"
|
Choice2="screen,ScreenNetworkOptions;text,Play Online"
|
||||||
Choice3="screen,ScreenSelectGame;text,Select Game"
|
Choice3="screen,ScreenSelectGame;text,Select Game"
|
||||||
Choice4="screen,ScreenOptionsService;text,Options"
|
Choice4="screen,ScreenOptionsService;text,Options"
|
||||||
Choice5="screen,ScreenOptionsEdit;text,Edit/Share"
|
Choice5="text,Edit/Share;screen,"..Branch.OptionsEdit()
|
||||||
Choice6="screen,ScreenJukeboxMenu;text,Jukebox"
|
Choice6="screen,ScreenJukeboxMenu;text,Jukebox"
|
||||||
Choice7="screen,ScreenExit;text,Exit"
|
Choice7="screen,ScreenExit;text,Exit"
|
||||||
Choice8="screen,ScreenTest;text,Sandbox"
|
Choice8="screen,ScreenTest;text,Sandbox"
|
||||||
|
|||||||
Reference in New Issue
Block a user