1
0
mirror of https://github.com/TomHarte/CLK.git synced 2025-02-03 07:33:29 +00:00

Removed redundant code.

This commit is contained in:
Thomas Harte 2015-08-10 16:42:25 +01:00
parent 2dde2efff0
commit 0e52b7365e

View File

@ -10,11 +10,6 @@ import Cocoa
class Atari2600Document: NSDocument, CSCathodeRayViewDelegate {
override init() {
super.init()
// Add your subclass-specific initialization here.
}
@IBOutlet weak var openGLView: CSCathodeRayView?
override func windowControllerDidLoadNib(aController: NSWindowController) {
super.windowControllerDidLoadNib(aController)
@ -74,10 +69,4 @@ class Atari2600Document: NSDocument, CSCathodeRayViewDelegate {
}
lastCycleCount = cycleCount
}
// MARK: CSAtari2600Delegate
func atari2600NeedsRedraw(atari2600: CSAtari2600!) {
openGLView?.needsDisplay = true
}
}