View Single Post
Old 27 February 2010, 07:47   #249
Maren
Banned
 
Join Date: Jul 2009
Location: *
Posts: 567
Quote:
Originally Posted by Toni Wilen View Post
Does the problem disappear if you edit winuae.fx and replace

AddressU = Clamp;
AddressV = Clamp;

with "Wrap" like this:

Code:
sampler	OverlaySampler = sampler_state {
	Texture	  = (OverlayTexture);
	MinFilter = POINT;
	MagFilter = POINT;
	MipFilter = NONE;
	AddressU  = Wrap;
	AddressV  = Wrap;
};
I know the question wasn't directed at me, but you might want to know that fixed the problem here
Maren is offline  
 
Page generated in 0.11568 seconds with 11 queries