Skip to content

Commit

Permalink
revert formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
SamoZ256 committed Jul 2, 2024
1 parent 124622c commit 863edac
Show file tree
Hide file tree
Showing 7 changed files with 373 additions and 366 deletions.
6 changes: 3 additions & 3 deletions include/audio/hle_core.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ namespace Audio {
SampleFormat format;
SourceType sourceType;

bool fromQueue = false; // Is this buffer from the buffer queue or an embedded buffer?
bool hasPlayedOnce = false; // Has the buffer been played at least once before?
bool fromQueue = false; // Is this buffer from the buffer queue or an embedded buffer?
bool hasPlayedOnce = false; // Has the buffer been played at least once before?

bool operator<(const Buffer& other) const {
// Lower ID = Higher priority
Expand Down Expand Up @@ -136,7 +136,7 @@ namespace Audio {
const auto counter0 = dspRam.region0.frameCounter;
const auto counter1 = dspRam.region1.frameCounter;

// HandleType wraparound cases first
// Handle wraparound cases first
if (counter0 == 0xffff && counter1 != 0xfffe) {
return 1;
} else if (counter1 == 0xffff && counter0 != 0xfffe) {
Expand Down
2 changes: 1 addition & 1 deletion include/capstone.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

namespace Common {
class CapstoneDisassembler {
csh handle; // HandleType to our disassembler object
csh handle; // Handle to our disassembler object
cs_insn* instructions = nullptr; // Pointer to instruction object
bool initialized = false;

Expand Down
Loading

0 comments on commit 863edac

Please sign in to comment.