Skip to content

Commit c7a5b9f

Browse files
committed
Small fix to gsrunner command line options.
1 parent 530a645 commit c7a5b9f

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

pcsx2-gsrunner/Main.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -532,7 +532,7 @@ bool GSRunner::ParseCommandLineArgs(int argc, char* argv[], VMBootParameters& pa
532532
{
533533
std::string str(argv[++i]);
534534

535-
s_settings_interface.SetBoolValue("EmuCore/GS", "dump", true);
535+
s_settings_interface.SetBoolValue("EmuCore/GS", "DumpGSData", true);
536536

537537
if (str.find("rt") != std::string::npos)
538538
s_settings_interface.SetBoolValue("EmuCore/GS", "SaveRT", true);
@@ -764,7 +764,7 @@ bool GSRunner::ParseCommandLineArgs(int argc, char* argv[], VMBootParameters& pa
764764
return false;
765765
}
766766

767-
if (s_settings_interface.GetBoolValue("EmuCore/GS", "dump") && !dumpdir.empty())
767+
if (s_settings_interface.GetBoolValue("EmuCore/GS", "DumpGSData") && !dumpdir.empty())
768768
{
769769
if (s_settings_interface.GetStringValue("EmuCore/GS", "HWDumpDirectory").empty())
770770
s_settings_interface.SetStringValue("EmuCore/GS", "HWDumpDirectory", dumpdir.c_str());

pcsx2/GS/GSState.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1709,7 +1709,7 @@ void GSState::FlushPrim()
17091709
// Fix huge or nan ST coordinates
17101710
if (PRIM->TME && !PRIM->FST)
17111711
{
1712-
FixHugeSTCoords();
1712+
FixHugeSTCoords();
17131713
}
17141714

17151715
// Round fractional parts of ST coords

0 commit comments

Comments
 (0)