Skip to content

Commit

Permalink
systems file renames
Browse files Browse the repository at this point in the history
  • Loading branch information
superg committed Dec 4, 2023
1 parent da2e73b commit c6ab251
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 10 deletions.
12 changes: 6 additions & 6 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -155,12 +155,12 @@ target_sources(redumper
"scsi/mmc.ixx"
"scsi/sptd.ixx"
"systems/securom.ixx"
"systems/system_cdrom.ixx"
"systems/system_iso.ixx"
"systems/system_mcd.ixx"
"systems/system_psx.ixx"
"systems/system_ps2.ixx"
"systems/system_ss.ixx"
"systems/s_cdrom.ixx"
"systems/s_iso.ixx"
"systems/mcd.ixx"
"systems/psx.ixx"
"systems/ps2.ixx"
"systems/sat.ixx"
"systems/system.ixx"
"systems/systems.ixx"
"utils/animation.ixx"
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
4 changes: 2 additions & 2 deletions systems/system_ss.ixx → systems/sat.ixx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ module;
#include <ostream>
#include <string_view>

export module systems.ss;
export module systems.sat;

import filesystem.iso9660;
import readers.sector_reader;
Expand All @@ -19,7 +19,7 @@ import utils.hex_bin;
namespace gpsxre
{

export class SystemSS : public System
export class SystemSAT : public System
{
public:
std::string getName() override
Expand Down
4 changes: 2 additions & 2 deletions systems/systems.ixx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import systems.mcd;
import systems.psx;
import systems.ps2;
import systems.securom;
import systems.ss;
import systems.sat;
import systems.system;


Expand All @@ -36,7 +36,7 @@ public:
systems.push_back([](){ return std::make_unique<SystemMCD>(); });
systems.push_back([](){ return std::make_unique<SystemPSX>(); });
systems.push_back([](){ return std::make_unique<SystemPS2>(); });
systems.push_back([](){ return std::make_unique<SystemSS>(); });
systems.push_back([](){ return std::make_unique<SystemSAT>(); });

return systems;
}
Expand Down

0 comments on commit c6ab251

Please sign in to comment.