shithub: orca

Download patch

ref: 3fa44aeba878a812d8b5c7151a1b4da6aa99920b
parent: b12aa3810c864d0869c80711fbbeea512c61e9d0
author: cancel <cancel@cancel.fm>
date: Mon Nov 26 08:36:56 EST 2018

Fix redundant semicolon

--- a/sim.c
+++ b/sim.c
@@ -106,7 +106,7 @@
 
 #define OPER_LOCK_RELATIVE(_delta_y, _delta_x)                                 \
   mbuffer_poke_relative_flags_or(mbuffer, height, width, y, x, _delta_y,       \
-                                 _delta_x, Mark_flag_lock);
+                                 _delta_x, Mark_flag_lock)
 
 #define OPER_MOVE_OR_EXPLODE(_delta_y, _delta_x)                               \
   oper_move_relative_or_explode(gbuffer, mbuffer, height, width,               \
@@ -200,6 +200,8 @@
 OPER_END
 OPER_PHASE_2(bang)
 OPER_END
+
+//////// Run simulation
 
 static void sim_phase_0(Gbuffer gbuf, Mbuffer mbuf, Usz height, Usz width) {
   for (Usz iy = 0; iy < height; ++iy) {