Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
rtoumazet committed Dec 14, 2024
1 parent f06bc15 commit 71d2d35
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions saturnin/saturnin.vcxproj
Original file line number Diff line number Diff line change
Expand Up @@ -230,6 +230,7 @@
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
<ShowIncludes>false</ShowIncludes>
<PrecompiledHeader>Use</PrecompiledHeader>
<LanguageStandard>stdcpp20</LanguageStandard>
</ClCompile>
<Link />
<Link>
Expand Down
4 changes: 2 additions & 2 deletions saturnin/src/cdrom/cdrom.h
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ constexpr auto SLEN_2352 = u8{3};

constexpr auto FILTER_NOT_CONNECTED = u8{0xFF}; ///< No filter connexion.

constexpr auto INVALID_FAD = u32{0xFFFFFF}; ///< Invalid FAD.
constexpr auto INVALID_FAD = u32{0xFFFFFF}; ///< Invalid FAD.

/// \name Number of cycles to read a sector
//@{
Expand Down Expand Up @@ -262,7 +262,7 @@ class Cdrom {
//@{
// Constructors / Destructors
Cdrom() = delete;
explicit Cdrom(EmulatorContext* ec) : modules_(ec){};
explicit Cdrom(EmulatorContext* ec) : modules_(ec) {};
Cdrom(const Cdrom&) = delete;
Cdrom(Cdrom&&) = delete;
auto operator=(const Cdrom&) & -> Cdrom& = delete;
Expand Down

0 comments on commit 71d2d35

Please sign in to comment.