aboutsummaryrefslogtreecommitdiff
path: root/source/snes9x.h
diff options
context:
space:
mode:
authortwinaphex2017-08-14 08:06:11 +0200
committertwinaphex2017-08-14 08:06:11 +0200
commit78b32e05a8e3c221279ba40c8f19d762420be8a6 (patch)
tree522343d835ca7eec5ebae18c20ec35ac768250be /source/snes9x.h
parent75dbfcb2348fb8f41feb5b9b1536d8525a47f9e3 (diff)
downloadsnes9x2005-78b32e05a8e3c221279ba40c8f19d762420be8a6.tar.gz
snes9x2005-78b32e05a8e3c221279ba40c8f19d762420be8a6.tar.bz2
snes9x2005-78b32e05a8e3c221279ba40c8f19d762420be8a6.zip
C++ comments need to become C
Diffstat (limited to 'source/snes9x.h')
-rw-r--r--source/snes9x.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/source/snes9x.h b/source/snes9x.h
index 536642b..fdeae61 100644
--- a/source/snes9x.h
+++ b/source/snes9x.h
@@ -101,12 +101,12 @@ typedef struct
uint8_t* PCAtOpcodeStart;
uint8_t* WaitAddress;
uint32_t WaitCounter;
- long Cycles; // For savestate compatibility can't change to int32_t
- long NextEvent; // For savestate compatibility can't change to int32_t
- long V_Counter; // For savestate compatibility can't change to int32_t
- long MemSpeed; // For savestate compatibility can't change to int32_t
- long MemSpeedx2; // For savestate compatibility can't change to int32_t
- long FastROMSpeed; // For savestate compatibility can't change to int32_t
+ long Cycles; /* For savestate compatibility can't change to int32_t */
+ long NextEvent; /* For savestate compatibility can't change to int32_t */
+ long V_Counter; /* For savestate compatibility can't change to int32_t */
+ long MemSpeed; /* For savestate compatibility can't change to int32_t */
+ long MemSpeedx2; /* For savestate compatibility can't change to int32_t */
+ long FastROMSpeed; /* For savestate compatibility can't change to int32_t */
uint32_t SaveStateVersion;
bool SRAMModified;
uint32_t NMITriggerPoint;
@@ -188,7 +188,7 @@ typedef struct
uint32_t SoundInputRate;
#endif
bool TraceSoundDSP;
- bool EightBitConsoleSound; // due to caching, this needs S9xSetEightBitConsoleSound()
+ bool EightBitConsoleSound; /* due to caching, this needs S9xSetEightBitConsoleSound() */
int32_t SoundBufferSize;
int32_t SoundMixInterval;
bool SoundEnvelopeHeightReading;