kemakokos Posted March 30, 2020 Share Posted March 30, 2020 Hi everyone. I will try to explain my problem... When launching a cemu game with no starup screen enabled the game just starts fine. But if startup screen is enabled, the game launches, but i can only hear the sound in the background and a black screen is all i see. The game is running because i can hear it, but for some reason it doesn´t show on screen, its like running behind some black screen. Does anybody knows how to fix this? Thank you. Quote Link to comment Share on other sites More sharing options...
Retro808 Posted March 30, 2020 Share Posted March 30, 2020 14 minutes ago, kemakokos said: Hi everyone. I will try to explain my problem... When launching a cemu game with no starup screen enabled the game just starts fine. But if startup screen is enabled, the game launches, but i can only hear the sound in the background and a black screen is all i see. The game is running because i can hear it, but for some reason it doesn´t show on screen, its like running behind some black screen. Does anybody knows how to fix this? Thank you. Cemu should work with startup on. Running ok with my setup. What version Cemu are you using? Are you on Win10? Try checking either (or both) the "Aggressive Startup Window Hiding" or "Hide All Windows..." options. Quote Link to comment Share on other sites More sharing options...
kemakokos Posted March 30, 2020 Author Share Posted March 30, 2020 Im on Cemu 1.17.4 running on Win10. I tried Aggressive Startup Window Hiding and Hide All Windows, both selected and one at a time, but no luck, i will try again, maybe im missing something Quote Link to comment Share on other sites More sharing options...
Retro808 Posted March 30, 2020 Share Posted March 30, 2020 10 minutes ago, kemakokos said: Im on Cemu 1.17.4 running on Win10. I tried Aggressive Startup Window Hiding and Hide All Windows, both selected and one at a time, but no luck, i will try again, maybe im missing something OK. I haven't bothered with Cemu in quite a while so updated to 1.17.4 and still works fine with the 3 games I tested. Here are the settings I have. Admittedly I have not tweaked any graphic settings in Cemu in quite a while as well so maybe it could be a setting directly in Cemu causing the focus loss. Quote Link to comment Share on other sites More sharing options...
kemakokos Posted March 30, 2020 Author Share Posted March 30, 2020 No luck here, thank you anyway. Tried changing Vulkan and OpenGL to see if that was causing the problem, but nothing worked. Quote Link to comment Share on other sites More sharing options...
Thel_Fett Posted February 14, 2021 Share Posted February 14, 2021 I have the same problem with the black screen and im using cemu version 1.22.6c and I also dont know where you guys got the edit emulator screen Quote Link to comment Share on other sites More sharing options...
Retro808 Posted February 14, 2021 Share Posted February 14, 2021 5 minutes ago, Thel_Fett said: I have the same problem with the black screen and im using cemu version 1.22.6c and I also dont know where you guys got the edit emulator screen Its in Launchbox. Go to >Tools>Manage Emulators. Choose Cemu and edit it. Quote Link to comment Share on other sites More sharing options...
Thel_Fett Posted February 14, 2021 Share Posted February 14, 2021 (edited) alright I found it now what do i do to make the screen not black in version 1.22 Edited February 14, 2021 by Thel_Fett Quote Link to comment Share on other sites More sharing options...
Thel_Fett Posted February 14, 2021 Share Posted February 14, 2021 Ok im not buying the launch box premium im broke, Does that mean im screwed Quote Link to comment Share on other sites More sharing options...
jayjay Posted February 15, 2021 Share Posted February 15, 2021 (edited) Hey guys. I dont have this problem but you could try the following... In LB, go to tools, Manage Emulators. Select Cemu and open the "Running AutoHotkey Script" tab. Copy and paste the following into the running ahk script tab SetTitleMatchMode, 2 loop 20 { Sleep 500 if WinExist("Cemu") { Sleep 1000 WinActivate break } } If you already have some code in the running ahk script tab, place this^ code at the top above anything else. Just to explain a little what is going on with this code. "Loop 20"... the code within the squirrely brackets will loop 20 times. "Sleep 500"... wait half a second between each loop.... these 2 commands combined is essentially a timeout of 10 seconds. "if WinExist"... If a windows titlebar contains the word "Cemu" then "WinActivate", bring that window to the front. Edited February 15, 2021 by jayjay Quote Link to comment Share on other sites More sharing options...
Thel_Fett Posted February 16, 2021 Share Posted February 16, 2021 On 2/14/2021 at 8:30 PM, jayjay said: Hey guys. I dont have this problem but you could try the following... In LB, go to tools, Manage Emulators. Select Cemu and open the "Running AutoHotkey Script" tab. Copy and paste the following into the running ahk script tab SetTitleMatchMode, 2 loop 20 { Sleep 500 if WinExist("Cemu") { Sleep 1000 WinActivate break } } If you already have some code in the running ahk script tab, place this^ code at the top above anything else. Just to explain a little what is going on with this code. "Loop 20"... the code within the squirrely brackets will loop 20 times. "Sleep 500"... wait half a second between each loop.... these 2 commands combined is essentially a timeout of 10 seconds. "if WinExist"... If a windows titlebar contains the word "Cemu" then "WinActivate", bring that window to the front. ok I tried it and it worked ty! Quote Link to comment Share on other sites More sharing options...
iimateus Posted April 17, 2021 Share Posted April 17, 2021 On 2/14/2021 at 10:30 PM, jayjay said: Hey guys. I dont have this problem but you could try the following... In LB, go to tools, Manage Emulators. Select Cemu and open the "Running AutoHotkey Script" tab. Copy and paste the following into the running ahk script tab SetTitleMatchMode, 2 loop 20 { Sleep 500 if WinExist("Cemu") { Sleep 1000 WinActivate break } } If you already have some code in the running ahk script tab, place this^ code at the top above anything else. Just to explain a little what is going on with this code. "Loop 20"... the code within the squirrely brackets will loop 20 times. "Sleep 500"... wait half a second between each loop.... these 2 commands combined is essentially a timeout of 10 seconds. "if WinExist"... If a windows titlebar contains the word "Cemu" then "WinActivate", bring that window to the front. Whats lb ? Quote Link to comment Share on other sites More sharing options...
Rincewind Posted April 17, 2021 Share Posted April 17, 2021 LaunchBox Quote Link to comment Share on other sites More sharing options...
daniel123 Posted February 19, 2023 Share Posted February 19, 2023 I have this problem too but I cant get adio ether cpu: intel core i5 gen2 gpu: imbeded in cpu Quote Link to comment Share on other sites More sharing options...
Gangor Posted February 23, 2023 Share Posted February 23, 2023 On 2/14/2021 at 7:30 PM, jayjay said: Hey guys. I dont have this problem but you could try the following... In LB, go to tools, Manage Emulators. Select Cemu and open the "Running AutoHotkey Script" tab. Copy and paste the following into the running ahk script tab SetTitleMatchMode, 2 loop 20 { Sleep 500 if WinExist("Cemu") { Sleep 1000 WinActivate break } } If you already have some code in the running ahk script tab, place this^ code at the top above anything else. Just to explain a little what is going on with this code. "Loop 20"... the code within the squirrely brackets will loop 20 times. "Sleep 500"... wait half a second between each loop.... these 2 commands combined is essentially a timeout of 10 seconds. "if WinExist"... If a windows titlebar contains the word "Cemu" then "WinActivate", bring that window to the front. @jayjay I have the black screen intermittent issue with the startup video. Is there any way of applying this script to the startup process? Quote Link to comment Share on other sites More sharing options...
BrainyCabde Posted March 26, 2023 Share Posted March 26, 2023 (edited) This is still a problem. I've tried the latest stable version of Cemu and the latest experimental version as well. Both launch through LB/BB, but I end up on a black screen with audio. If I open my task manager, Cemu shows up as a window. Cemu has no issues launching games on it's own, but when trying to get it to work through LB/BB, I get the black screen bug. All settings in LB are at default for Cemu. Half of the games I have don't give me a black screen. Cemu seems to lose focus on launch. There's gotta be a AHK script that solves this. I am using two screens with my primary disabled and using my secondary screen. All my other emulators(including standalone) don't have issue with this at all. Just half of the Cemu games. Would love to hear any feedback at all. Thanks in advance! Edit- Figured it out thanks to fellow user Skizzosjt. For default command line parameters, you'll only want -g. As for the running script section, here is what I have... Sleep, 8000 SetKeyDelay, -1, 110 Send {LButton} Send !{Enter} Return Esc:: WinClose, ahk_exe {{{StartupEXE}}} That's it. Hope this helps anyone who comes across this issue down the road. Thank you Skizzosjt for all your help! Edited March 26, 2023 by BrainyCabde 1 Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.