Skip to content

Commit ee58384

Browse files
committed
more title-specific config forcing
1 parent 7c6365d commit ee58384

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

Source/iop/namco_sys246/Iop_NamcoSys246.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -808,7 +808,7 @@ void CSys246::ProcessMemRequest(uint8* ram, uint32 infoPtr)
808808
//0x40 -> Output Level (Voltage) of Video Signal
809809
//0x20 -> Monitor Sync Frequency (1: 31Khz or 0: 15Khz)
810810
//0x10 -> Video Sync Signal (1: Separate Sync or 0: Composite Sync)
811-
if(!(this->m_gameId == "soulclb3"))
811+
if(!(this->m_gameId == "soulclb3" || this->m_gameId == "motogp"))
812812
{
813813
ram[recvDataPtr + 0x30] = 0x20 | 0x40;
814814
}

Source/ui_qt/mainwindow.cpp

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -452,9 +452,12 @@ void MainWindow::BootArcadeMachine(fs::path arcadeDefPath)
452452
std::map<std::string, int> ogl_scale_factors;
453453
ogl_scale_factors["wanganmd"] = 4; // works at all scaling factors
454454
ogl_scale_factors["superdbz"] = 4; // works at all scaling factors
455+
ogl_scale_factors["fateulc"] = 4; // works at all scaling factors
456+
ogl_scale_factors["acedriv3"] = 4; // works at all scaling factors
455457
ogl_scale_factors["fghtjam"] = 2; // scale factor 2 fixes mis-aligned character sprite segments
456458
ogl_scale_factors["sbxc"] = 1; // scale factor 1 fixes mis-aligned first column in opening video
457459
ogl_scale_factors["tekken51"] = 1; // scale factor 1 fixes vertical black lines
460+
ogl_scale_factors["motogp"] = 1; // scale factor 1 fixes dashed horizontal black lines in background tiles
458461
ogl_scale_factors["default"] = 1;
459462

460463
if(ogl_scale_factors.count(arcadeDefPath.stem().string()))

0 commit comments

Comments
 (0)