Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Macro Deck Server does not detect Helldivers 2 Window #541

Open
uliss3s opened this issue Jun 11, 2024 · 1 comment
Open

Macro Deck Server does not detect Helldivers 2 Window #541

uliss3s opened this issue Jun 11, 2024 · 1 comment
Labels
bug Something isn't working

Comments

@uliss3s
Copy link

uliss3s commented Jun 11, 2024

Trying to configure the folder "on application focus" setting for the game helldivers 2 but it does not appears in the application list.

Running the following code (similar to what is used in the app repo) in my local machine works and the game window is detected normaly:

using System.Diagnostics;
using static System.String;

var processCollection = Process.GetProcesses();

foreach (var p in processCollection)
{
    if (!IsNullOrEmpty(p.MainWindowTitle))
    {
        Console.Write(p.ProcessName + ";" + p.MainWindowTitle + "\n");
    }
}

output:

...
helldivers2;HELLDIVERS™ 2
...
@uliss3s uliss3s added the bug Something isn't working label Jun 11, 2024
@uliss3s
Copy link
Author

uliss3s commented Jun 18, 2024

After testing a bit more, I found that the process with the correct MainWindowTitle is appearing named as "Idle" (id=0) in MacroDeck.
The "helldivers2.exe" process don't have the MainWindowTitle value in MacroDeck.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

1 participant