Skip to content

Commit

Permalink
Playback v2.3.7; remove Normal Lag Reduction and default to auto aspe…
Browse files Browse the repository at this point in the history
…ct ratio
  • Loading branch information
NikhilNarayana committed Oct 13, 2021
1 parent 68f0390 commit aaad1a2
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 11 deletions.
5 changes: 0 additions & 5 deletions Data/PlaybackGeckoCodes/GALE01r2.ini
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ FastDiscSpeed = True
[Gecko_Enabled]
$Required: General Codes
$Required: Slippi Playback
$Recommended: Normal Lag Reduction
$Optional: Show Player Names

[Gecko]
Expand Down Expand Up @@ -1037,10 +1036,6 @@ C209E090 00000011 #Common/FastForward/DynamicsFix.asm
7C0803A6 4E800020
BB010028 00000000

$Recommended: Normal Lag Reduction [Hannes Mann]
043761EC 4800001C
04376238 48000018

$Optional: Show Player Names [Fizzi, UnclePunch, Enzyme, jmlee337]
*Show players' Slippi Online display names as HUD elements when available
C216E9B4 0000009A #Playback/Show Player Names/InitInGame.asm
Expand Down
5 changes: 0 additions & 5 deletions Data/PlaybackGeckoCodes/GALJ01r2.ini
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ FastDiscSpeed = True
[Gecko_Enabled]
$Required: General Codes
$Required: Slippi Playback
$Recommended: Normal Lag Reduction
$Optional: Show Player Names

[Gecko]
Expand Down Expand Up @@ -1037,10 +1036,6 @@ C209E090 00000011 #Common/FastForward/DynamicsFix.asm
7C0803A6 4E800020
BB010028 00000000

$Recommended: Normal Lag Reduction [Hannes Mann]
043761EC 4800001C
04376238 48000018

$Optional: Show Player Names [Fizzi, UnclePunch, Enzyme, jmlee337]
*Show players' Slippi Online display names as HUD elements when available
C216E9B4 0000009A #Playback/Show Player Names/InitInGame.asm
Expand Down
2 changes: 1 addition & 1 deletion Source/Core/Common/Version.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
#ifndef IS_PLAYBACK
#define SLIPPI_REV_STR "2.3.2" // netplay version
#else
#define SLIPPI_REV_STR "2.3.6" // playback version
#define SLIPPI_REV_STR "2.3.7" // playback version
#endif
#ifdef IS_PLAYBACK
const std::string scm_rev_str = "Faster Melee - Slippi (" SLIPPI_REV_STR ") - Playback";
Expand Down
2 changes: 2 additions & 0 deletions Source/Core/Core/HW/EXI_DeviceSlippi.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1047,6 +1047,8 @@ void CEXISlippi::prepareGeckoList()
{0x80218D68, true}, // Binary/LagReduction/PD+VB.bin
{0x8016E9AC, true}, // Binary/Force2PCenterHud.bin
{0x80030E44, true}, // Binary/DisableScreenShake.bin
{0x803761EC, true}, // Binary/NormalLagReduction.bin
{0x80376238, true}, // Binary/NormalLagReduction.bin

{0x800055f0, true}, // Common/EXITransferBuffer.asm
{0x800055f8, true}, // Common/GetIsFollower.asm
Expand Down
4 changes: 4 additions & 0 deletions Source/Core/VideoCommon/VideoConfig.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,11 @@ void VideoConfig::Load(const std::string& ini_file)

IniFile::Section* settings = iniFile.GetOrCreateSection("Settings");
settings->Get("wideScreenHack", &bWidescreenHack, false);
#ifdef IS_PLAYBACK
settings->Get("AspectRatio", &iAspectRatio, (int)ASPECT_AUTO);
#else
settings->Get("AspectRatio", &iAspectRatio, (int)ASPECT_73_60);
#endif
settings->Get("Crop", &bCrop, false);
settings->Get("UseXFB", &bUseXFB, 0);
settings->Get("UseRealXFB", &bUseRealXFB, 0);
Expand Down

0 comments on commit aaad1a2

Please sign in to comment.