Skip to content

Commit

Permalink
cps2: increase sound volume
Browse files Browse the repository at this point in the history
  • Loading branch information
barbudreadmon authored Oct 25, 2024
1 parent 8dc214b commit 1968b5f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/burn/drv/capcom/cps_run.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -436,8 +436,8 @@ INT32 Cps2Frame()
if (Cps2Volume > 39) Cps2Volume = 39;
if (Cps2Volume < 0) Cps2Volume = 0;

QscSetRoute(BURN_SND_QSND_OUTPUT_1, Cps2Volume / 39.0, BURN_SND_ROUTE_LEFT);
QscSetRoute(BURN_SND_QSND_OUTPUT_2, Cps2Volume / 39.0, BURN_SND_ROUTE_RIGHT);
QscSetRoute(BURN_SND_QSND_OUTPUT_1, (Cps2Volume / 39.0)*2, BURN_SND_ROUTE_LEFT);
QscSetRoute(BURN_SND_QSND_OUTPUT_2, (Cps2Volume / 39.0)*2, BURN_SND_ROUTE_RIGHT);
}

nDisplayEnd = nCpsCycles * (nFirstLine + 224) / nCpsNumScanlines; // Account for VBlank
Expand Down

0 comments on commit 1968b5f

Please sign in to comment.