Skip to content

Commit

Permalink
cmd/robloxmutexer: fix rblx proc check
Browse files Browse the repository at this point in the history
  • Loading branch information
apprehensions committed Feb 9, 2024
1 parent 1810add commit c3b70bd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/robloxmutexer/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ func robloxRunning() (bool, error) {
}
return false, err
}
if windows.UTF16ToString(pe.ExeFile[:]) == "RobloxPlayerBeta" {
if windows.UTF16ToString(pe.ExeFile[:]) == "RobloxPlayerBeta.exe" {
return true, nil
}
}
Expand Down

0 comments on commit c3b70bd

Please sign in to comment.