aboutsummaryrefslogtreecommitdiff
path: root/source/cpu.c
diff options
context:
space:
mode:
authortwinaphex2017-08-14 08:06:11 +0200
committertwinaphex2017-08-14 08:06:11 +0200
commit78b32e05a8e3c221279ba40c8f19d762420be8a6 (patch)
tree522343d835ca7eec5ebae18c20ec35ac768250be /source/cpu.c
parent75dbfcb2348fb8f41feb5b9b1536d8525a47f9e3 (diff)
downloadsnesemu-78b32e05a8e3c221279ba40c8f19d762420be8a6.tar.gz
snesemu-78b32e05a8e3c221279ba40c8f19d762420be8a6.tar.bz2
snesemu-78b32e05a8e3c221279ba40c8f19d762420be8a6.zip
C++ comments need to become C
Diffstat (limited to 'source/cpu.c')
-rw-r--r--source/cpu.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/cpu.c b/source/cpu.c
index 1724fd6..f0d983e 100644
--- a/source/cpu.c
+++ b/source/cpu.c
@@ -51,7 +51,7 @@ void S9xResetCPU()
CPU.PCAtOpcodeStart = NULL;
CPU.WaitAddress = NULL;
CPU.WaitCounter = 1;
- CPU.Cycles = 188; // This is the cycle count just after the jump to the Reset Vector.
+ CPU.Cycles = 188; /* This is the cycle count just after the jump to the Reset Vector. */
CPU.NextEvent = Settings.HBlankStart;
CPU.V_Counter = 0;
CPU.MemSpeed = SLOW_ONE_CYCLE;