From 9e8daf667b4863b55bc573df2365e633ec002b37 Mon Sep 17 00:00:00 2001 From: cxl Date: Fri, 24 Apr 2020 08:14:36 +0000 Subject: [PATCH] .examples git-svn-id: svn://ultimatepp.org/upp/trunk@14363 f0d560ea-af0d-0410-9eb7-867de7ffcac7 --- examples/SDLSoundDemo/main.cpp | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/examples/SDLSoundDemo/main.cpp b/examples/SDLSoundDemo/main.cpp index 722388eff..f40cc76f2 100644 --- a/examples/SDLSoundDemo/main.cpp +++ b/examples/SDLSoundDemo/main.cpp @@ -17,9 +17,6 @@ const char *score_qsf = )"; -struct MyApp : TopWindow { -}; - GUI_APP_MAIN { InitSoundSynth(); @@ -27,7 +24,7 @@ GUI_APP_MAIN SoundSequence s = ParseQSF(score_qsf); PlaySequence(s); - MyApp().Run(); + TopWindow().Run(); CloseSoundSynth(); }