mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2024-11-14 05:17:44 -07:00
Merge pull request #13086 from Tilka/gameini
GameSettings: safe texture cache for "Winter Sports 3: The Great Tournament"
This commit is contained in:
commit
7db13d23c9
17
Data/Sys/GameSettings/RZI.ini
Normal file
17
Data/Sys/GameSettings/RZI.ini
Normal file
@ -0,0 +1,17 @@
|
||||
# RZIE20, RZIPRT - Winter Sports 3: The Great Tournament
|
||||
|
||||
[Core]
|
||||
# Values set here will override the main Dolphin settings.
|
||||
|
||||
[OnLoad]
|
||||
# Add memory patches to be loaded once on boot here.
|
||||
|
||||
[OnFrame]
|
||||
# Add memory patches to be applied every frame here.
|
||||
|
||||
[ActionReplay]
|
||||
# Add action replay cheats here.
|
||||
|
||||
[Video_Settings]
|
||||
SafeTextureCacheColorSamples = 0
|
||||
|
@ -290,8 +290,7 @@ void WiiIPC::GenerateAck(u32 address)
|
||||
m_ctrl.Y1, m_ctrl.Y2, m_ctrl.X1);
|
||||
// Based on a hardware test, the IPC interrupt takes approximately 100 TB ticks to fire
|
||||
// after Y2 is seen in the control register.
|
||||
m_system.GetCoreTiming().ScheduleEvent(100 * SystemTimers::TIMER_RATIO,
|
||||
m_event_type_update_interrupts);
|
||||
m_system.GetCoreTiming().ScheduleEvent(100_tbticks, m_event_type_update_interrupts);
|
||||
}
|
||||
|
||||
void WiiIPC::GenerateReply(u32 address)
|
||||
@ -302,8 +301,7 @@ void WiiIPC::GenerateReply(u32 address)
|
||||
m_ctrl.Y1, m_ctrl.Y2, m_ctrl.X1);
|
||||
// Based on a hardware test, the IPC interrupt takes approximately 100 TB ticks to fire
|
||||
// after Y1 is seen in the control register.
|
||||
m_system.GetCoreTiming().ScheduleEvent(100 * SystemTimers::TIMER_RATIO,
|
||||
m_event_type_update_interrupts);
|
||||
m_system.GetCoreTiming().ScheduleEvent(100_tbticks, m_event_type_update_interrupts);
|
||||
}
|
||||
|
||||
bool WiiIPC::IsReady() const
|
||||
|
Loading…
Reference in New Issue
Block a user