.examples

git-svn-id: svn://ultimatepp.org/upp/trunk@14363 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
cxl 2020-04-24 08:14:36 +00:00
parent c254e1178b
commit 9e8daf667b

View file

@ -17,9 +17,6 @@ const char *score_qsf =
)"; )";
struct MyApp : TopWindow {
};
GUI_APP_MAIN GUI_APP_MAIN
{ {
InitSoundSynth(); InitSoundSynth();
@ -27,7 +24,7 @@ GUI_APP_MAIN
SoundSequence s = ParseQSF(score_qsf); SoundSequence s = ParseQSF(score_qsf);
PlaySequence(s); PlaySequence(s);
MyApp().Run(); TopWindow().Run();
CloseSoundSynth(); CloseSoundSynth();
} }