Hi there Arcangel911,
Apologies for the large delay in response from one of us. This sounds like it may be related to the default video driver that's toggled in the preferences file for the copy you've downloaded. Try opening your prefs.cs file ( located in Marble Blast Gold \ marble \ client \ prefs.cs on Windows ) and open the script file using a text editor - the built in Windows Notepad or Mac Text Editor should work fine.
Change:
Code:
$pref::Video::Resolution = "1280 1040 32";
To:
Code:
$pref::Video::Resolution = "800 600 32";
If that doesn't help, locate the lines of code listed below and see if your video display device is set to Direct3D. If so, try changing this to OpenGL. The example below transitions from Direct3D to OpenGL:
Change:
Code:
$pref::Video::displayDevice = "D3D";
To:
Code:
$pref::Video::displayDevice = "OpenGL";
If that's still not doing the trick, try disabling fullscreen mode and adjust the windowed resolution to a smaller version and see if the game runs:
Change:
Code:
$pref::Video::fullscreen = "1";
To:
Code:
$pref::Video::fullscreen = "0";
Change:
Code:
$pref::Video::windowedRes= "...";
To:
Code:
$pref::Video::windowedRes= "800 600";
Try each of the following suggestions I listed above and then
save the prefs.cs file and then attempt to re-launch Marbleblast.exe. If you are still having troubles, post back so we can try to further troubleshoot the issue. If you were able to resolve the problem, please indicate which solution worked so others in the future can follow the same steps if they encounter a similar issue.
Best regards,
~Aayrl
Marble Blast Community Manager
The topic has been locked.