mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2024-11-14 05:17:44 -07:00
Compare commits
4 Commits
fe819b55da
...
8c2791dd6f
Author | SHA1 | Date | |
---|---|---|---|
|
8c2791dd6f | ||
|
80ea68b13c | ||
|
fbce737415 | ||
|
f72f046bf1 |
@ -13,6 +13,11 @@ CPUThread = False
|
||||
[Video_Settings]
|
||||
SafeTextureCacheColorSamples = 512
|
||||
|
||||
# Using a widescreen heuristic modification
|
||||
# fixes the game changing aspect ratios during gameplay.
|
||||
|
||||
WidescreenHeuristicTransitionThreshold = 20
|
||||
|
||||
# Because the minimap has a lot of unused triangles,
|
||||
# CPU Cull can greatly speed up demanding areas of the game.
|
||||
|
||||
|
@ -98,6 +98,10 @@ void ProcessorInterfaceManager::RegisterMMIO(MMIO::Mapping* mmio, u32 base)
|
||||
{
|
||||
system.GetGPFifo().ResetGatherPipe();
|
||||
|
||||
// Assume that all bytes that made it into the GPU fifo did in fact execute
|
||||
// before this MMIO write takes effect.
|
||||
system.GetFifo().SyncGPUForRegisterAccess();
|
||||
|
||||
// Call Fifo::ResetVideoBuffer() from the video thread. Since that function
|
||||
// resets various pointers used by the video thread, we can't call it directly
|
||||
// from the CPU thread, so queue a task to do it instead. In single-core mode,
|
||||
|
Loading…
Reference in New Issue
Block a user