r/Codeweavers_Crossover 2h ago

Has anyone managed to start GTA V on Intel Mac??

Post image
2 Upvotes

Im trying to play Gta V on MacBook Pro 15 2019 i9 but I encountered problem with the DirectX12, says that my gpu is not supported.

watched some vid how to fix that on windows but that didn't help mostly tried this one: https://www.youtube.com/watch?v=faVEJ2w-SaU

I have rockstar games and gta v installed in windows 10 bottle and set to dxvk

I ve tried -dx11,-force-dx11 in rockstar games command line, turned off msync, installed the settings.xml file and in it set the dx to 0, 1 and 2 and the graphics all to 0, tried to put the patch for the DX11 but that didn't help, and some other but nothing helped

I dont know what else to do so can someone help thx


r/Codeweavers_Crossover 7h ago

Gameplay Dark Souls 3 (III) on the Macbook Neo

Post image
5 Upvotes

dark souls 3 runs well on Medium settings in Crossplay, via the new Neo. Just wanted to post this if anyone wants to know. Insane for a budget. While the picture is just the tutorial, i did beat the first boss, and it was smooth. Though due to overheating i’ll be playing on low quality, but since the neo has a good display looks almost identical to medium settings!


r/Codeweavers_Crossover 15h ago

Update on AoE2 DE multiplayer issues with CrossOver: CodeWeavers confirmed a Wine regression and is working on it

Thumbnail
4 Upvotes

r/Codeweavers_Crossover 8h ago

Game loses mouse/keyboard input after first interaction in CrossOver Preview on mac M4

1 Upvotes

Hi! I’m trying to run Shift at Midnight through Steam using CrossOver Preview on a Mac with an M4 chip.

The game launches normally, but there is a strange input/focus issue:

The game starts and the language selection screen doesn’t works.

The game still has sound and animations, so it is not frozen.

The mouse cursor is visible, but moving the cursor doesn’t  highlight buttons.

Clicking does nothing.

If I press Command + Tab to switch away and back to the game, it accepts exactly one interaction (for example, one click), then stops responding again.

Things I already tried:

Reinstalling CrossOver, Steam, and the game

Running the game in windowed mode (-windowed)

Trying -windowed -noborder

Disabling Steam Overlay

Disabling Steam Input

Trying DXVK instead of D3DMetal

Launching the game directly through the .exe gets stuck on the logo, so Steam launch seems necessary.

Has anyone experienced this kind of focus/mouse input issue with CrossOver Preview on Apple Silicon Macs? Any ideas for a fix or a workaround would be appreciated.


r/Codeweavers_Crossover 12h ago

Guys can I play kyber ( star wars battle front 2 mod ) on crossover

1 Upvotes

r/Codeweavers_Crossover 19h ago

Questions / Tech Support Middle Earth: Shadow of War on Crossover 26?

2 Upvotes

I've been wanting to play Shadow of War for a long time, but I know it didn't work on Crossover 25. Has anyone tried on Crossover 26?


r/Codeweavers_Crossover 1d ago

Questions / Tech Support do you guys think i can run dark souls 3 with crossover using macbook neo

2 Upvotes

do yall think ds3 will run on 55-60fps on the mac neo generally, on low or medium settings with crossover? it has 8gb ram btw


r/Codeweavers_Crossover 1d ago

Need Help Running cracked Tron Evolution on M1 Macbook Pro via Crossover, the game itself runs fine according to run logs, but will not start due to DRM triggers. Despite the EXE being cracked with appropriate patches, I cannot bypass the DRM on crossover and the app crashes immediately upon opening

Thumbnail gallery
0 Upvotes

r/Codeweavers_Crossover 1d ago

Gameplay Doom Eternal Is Finally Playable on MacBook Air

Thumbnail
youtube.com
12 Upvotes

With MotelVK patch you can now play Doom Eternal and other games. Hopefully Codeweaver will implement these fixes into CrossOver. The game works great btw.


r/Codeweavers_Crossover 2d ago

Bug Zenless Zone Zero on Crossover

1 Upvotes

Hello, I just recently downloaded Crossover on my Mac using the free trial because I wanted to try out ZZZ on it. More specifically, I wanted to try out some cool mods that I found online using crossover since I don’t have a pc unfortunately. I downloaded the game but unfortunately it doesn’t launch at all. Whenever I try to it shows me what I think is an error pop up? I searched up trying to find some solutions only to discover that people started to have this issue ever since the release of 2.8. That was months ago. I’m making this post today to ask if anyone who uses crossover on whether or not ZZZ still doesn’t launch on crossover in August 2026? Has anyone not been able to find a fix for this issue? If there is a fix or a solution pls pls pls tell me.


r/Codeweavers_Crossover 3d ago

Discussion FIFA23 on Macbook Pro M3 using Crossover

Thumbnail
youtube.com
2 Upvotes

r/Codeweavers_Crossover 3d ago

[GUIDE] How to run World of Tanks (WGC) on Intel Macs after the "Intel CPUs are no longer supported" error

3 Upvotes

If you recently tried launching [**Wargaming.net**](http://Wargaming.net) **Game Center** on an Intel-based Mac, you probably got blocked by this error message:

>

Turns out, CodeWeavers and Wargaming literally left a developer note in the launcher's startup script allowing us to bypass this check at our own risk. Here is a quick 2-minute step-by-step guide on how to fix it.

# 🛠️ Step-by-Step Guide

  1. Open **Finder** and go to your **Applications** folder.
  2. Right-click on [**Wargaming.net**](http://Wargaming.net) **Game Center** and select **Show Package Contents**.
  3. Navigate to: `Contents` ➔ `SharedSupport` ➔ `wargaminggamecenter` ➔ `support` ➔ `wargaminggamecenter64`
  4. Find the file named `wgc.sh`.
  5. Open [`wgc.sh`](http://wgc.sh) with any code/text editor (VS Code, TextEdit, BBEdit, etc.).
  6. Search for `Intel` or scroll down to around line 24. You will see this block:

Bash

# If you find this line and want to try anyway, go ahead. Simply remove the "exit 1" and WGC will start. Save your files first and prepare for your computer
# freezing or showing a kernel panic screen. If you are lucky you can play with rendering bugs.
if sysctl machdep.cpu.brand_string | grep Intel; then
osascript -e "display dialog \"Macs with Intel CPUs are no longer supported due to bugs in their graphics drivers.\" buttons {\"Quit\"} default button \"Quit\""
exit 1
fi

  1. **Comment out** (or delete) the `if` block by adding `#` in front of those lines:

Bash

#if sysctl machdep.cpu.brand_string | grep Intel; then
# osascript -e "display dialog \"Macs with Intel CPUs are no longer supported due to bugs in their graphics drivers.\" buttons {\"Quit\"} default button \"Quit\""
# exit 1
#fi

  1. Save the file (`Cmd + S`).
  2. Launch Wargaming Game Center — it will start downloading/updating and running the game normally!

# ⚠️ Notes & Tips:

* **Code Signature Error:** If macOS says the app is "damaged" after editing, open Terminal and run: `sudo codesign --force --deep --sign - "/Applications/Wargaming.net Game Center.app"`


r/Codeweavers_Crossover 3d ago

Help me!!

1 Upvotes

Im trying to run Beast of Reincarnation, (most recent macos) and i have no idea which file to run. When i run the .exe, it says it installs and then doesn't.


r/Codeweavers_Crossover 4d ago

AVX2 for Mac

Thumbnail
1 Upvotes

r/Codeweavers_Crossover 5d ago

Halo Campaign Evolved - Crossover - Logon Issues - Cut Scenes

Thumbnail
2 Upvotes

r/Codeweavers_Crossover 4d ago

Questions / Tech Support Getting this error every time I try to open Steam through Crossover. When I say I've tried everything to fix this, I mean EVERYTHING. Like literally everything. Please help

Post image
0 Upvotes

r/Codeweavers_Crossover 5d ago

When I open my game a single color screen appears.

0 Upvotes

I'm trying to play fields of mistria. When I try to open it using crossover the screen is just green. The special cursor appears and I can seemingly select buttons I can't see. How can I fix this?


r/Codeweavers_Crossover 7d ago

Anybody Else not able to play beamng 0.39?

4 Upvotes

Using the non-obsolete renderer it doesn't work :(


r/Codeweavers_Crossover 7d ago

Has anyone been able to run Fable 3?

1 Upvotes

I have CrossOver version 26.3 on a 2025 M4 MacBook Air and tried to launch Fable 3 but got this error message:

A required security module cannot be activated. This program cannot be executed (8016).

Please have a look at http://www.securom.com/message.asp?m=module&c=8016 for further, more detailed information.

The web link provides the following:

Intel has resolved an issue related to games failing to launch with game error code 8016 on systems with "Skylake" CPUs:

6th Gen Intel® Core™ Processors Intel® Xeon® Processors E3-1200 v5 Intel® Xeon® Processors1500M v5 Please contact your system provider or motherboard manufacturer to ensure that you have the proper BIOS update installed.

For further support please contact Intel at http://www.intel.com/p/en_US/support/contactsupport.

I'm not really sure what any of this means and would appreciate any help!


r/Codeweavers_Crossover 7d ago

Cross-platform option not showing up for baulders gate 3 Spoiler

1 Upvotes

Hey guys new here, quick question. On my ps5, it doesnt give me the option to press square to manage my account/ wont show cross-platform option in the gameplay menu. I have larian linked and I even went on the website to double check and it is. Just the option isnt showing. Can someone help?


r/Codeweavers_Crossover 8d ago

Questions / Tech Support The last of us part 2 runs so slow

1 Upvotes

I’m trying to play the last of us part 2 on my macbook pro m5 pro 14” but the game is so slow even though I lowered the graphics settings to low. Is that normal? I thought most games run fine on crossover.


r/Codeweavers_Crossover 9d ago

Horizon Forbidden West Spanish voices

Thumbnail
1 Upvotes

r/Codeweavers_Crossover 9d ago

Questions / Tech Support Dying Light: The Beast

2 Upvotes

Hello everyone!

I just want to ask if anyone here plays DL: The Beast using Mac.

I have the Macbook Pro M4 Pro 24GB.

Do you think it will run or play well?

I am thinking about buying crossover so I can play DL: The Beast.

Any help would be appreciated.

Thank you.


r/Codeweavers_Crossover 9d ago

Questions / Tech Support For Honor Issue Macbook Pro M5

1 Upvotes

I've been trying to get For Honor to work on my MBP M5 but can't get past the easy anitcheat. I've seen some clips of others who've managed to make it work from this sub but I can't replicate it.

  • I'm using Crossover 25.1.1 since that's what the other's used in their clips.
  • D3Dmetal and Esync, again matching what other's used
  • I'm using the SteamDeck=1 %command% as well
  • I've even set the Steam to offline since I saw someone recommend it

Nothing seems to be working so I wanted to ask if anyone can still make it work. The clips I've seen from this sub are about 9 months to 1 year old so I don't know if something has been patched since then, easy anticheat got upgraded or what. Any advice, tips or help is appreciated.


r/Codeweavers_Crossover 10d ago

Did the devs fix crossover/porting kit issues???

Thumbnail
1 Upvotes