]> Shamusworld >> Repos - apple2/blobdiff - src/timing.cpp
Added new config icon.
[apple2] / src / timing.cpp
index 11ae2345161357abcb0f15a045a7a5b9e72ac8c6..ddf1fb758e271336e2a0a1972f0aef1044624bd9 100644 (file)
 
 // 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
 {