Skip to content

Commit

Permalink
Revert "Fix warning for rand(); NOLINT for now, as the proper fix isn…
Browse files Browse the repository at this point in the history
…'t until C++23."

This reverts commit 47aabd5.
  • Loading branch information
sa666666 committed Aug 6, 2024
1 parent 47aabd5 commit 304988b
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/emucore/tia/frame-manager/FrameManager.hxx
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,7 @@ class FrameManager: public AbstractFrameManager {
frameSizePAL = 312,
baseHeightNTSC = 228, // 217..239
baseHeightPAL = 274, // 260..288
// NOLINTNEXTLINE: lround suggested, but not constexpr until C++23
maxHeight = static_cast<uInt32>(baseHeightPAL * 1.05 + 0.5), // 288
maxHeight = static_cast<uInt32>(baseHeightPAL * 1.05 + 0.5), // 288 FIXME
maxLinesVsync = 50,
initialGarbageFrames = TIAConstants::initialGarbageFrames,
ystartNTSC = 23,
Expand Down

0 comments on commit 304988b

Please sign in to comment.