[SOLVED]What is this?

Newbie Spellweaver
Joined
Jun 26, 2022
Messages
11
Reaction score
2


How to fix this?
It's so annoying

dump???????????????
 

Attachments

You must be registered for see attachments list
Last edited:
Junior Spellweaver
Joined
Feb 2, 2012
Messages
168
Reaction score
57
I had this exact issue when using WINE. It was a font issue for me.
Another time it happened, it was using an integrated INTEL gpu instead of my dedicated NVIDIA card.
i've also seen this with unsupported resolutions.

hope these tips help.
 
Upvote 0
Newbie Spellweaver
Joined
Jun 26, 2022
Messages
11
Reaction score
2
I've switched the fotns in System.xml and templete.xml to Tahoma Font and am only using a dedicated Nvidia card and using this Enable Widescreen Support. Yet, it has the same problem. I attempted to make the lower resolution to be notably so!.
 
Upvote 0
Newbie Spellweaver
Joined
Jun 26, 2022
Messages
11
Reaction score
2
Can you show me a screen at the lobby
It is same as that only

SOLUTION:
Open RMesh_Render.cpp

Search for
C++:
void RMesh::RenderSub(D3DXMATRIX* world_mat,bool NoPartsChange,bool bRenderBuffer)

Add this at end of function
Code:
dev->SetRenderState(D3DRS_MULTISAMPLEANTIALIAS, FALSE);

Open RBspObject.cpp

Search for
C++:
bool RBspObject::Draw()

after LPDIRECT3DDEVICE9 pd3dDevice=RGetDevice();
Add this
C++:
pd3dDevice->SetRenderState(D3DRS_MULTISAMPLEANTIALIAS, TRUE);

Add this at end of the same function

C++:
pd3dDevice->SetRenderState(D3DRS_MULTISAMPLEANTIALIAS, FALSE);

After the characters are rendered, you must set it to false; otherwise, the font will attempt to antialias. Causes that font renders like that.

Credits : DeffJay
 
Last edited:
Upvote 0