]> Shamusworld >> Repos - apple2/blobdiff - src/timing.cpp
Docs were missing GPLv3. Thanks to schampailler for the heads up. :-)
[apple2] / src / timing.cpp
old mode 100755 (executable)
new mode 100644 (file)
index 11ae234..2345a92
@@ -7,7 +7,7 @@
 // JLH = James L. Hammons <jlhamm@acm.org>
 //
 // WHO  WHEN        WHAT
-// ---  ----------  ------------------------------------------------------------
+// ---  ----------  -----------------------------------------------------------
 // JLH  01/04/2006  Cosmetic changes (like this one ;-)
 //
 
 
 // NOTE ABOUT TIMING SYSTEM DATA STRUCTURES:
 
-// A queue won't work for this system because we can't guarantee that an event will go
-// in with a time that is later than the ones already queued up. So we just use a simple
-// list.
+// A queue won't work for this system because we can't guarantee that an event
+// will go in with a time that is later than the ones already queued up. So we
+// just use a simple list.
 
-// Although if we used an insertion sort we could, but it wouldn't work for adjusting
-// times...
+// Although if we used an insertion sort we could, but it wouldn't work for
+// adjusting times...
 
 struct Event
 {