[Vm-dev] VM Maker: VMMaker.oscog-eem.1084.mcz

commits at source.squeak.org commits at source.squeak.org
Thu Mar 5 01:07:58 UTC 2015


Eliot Miranda uploaded a new version of VMMaker to project VM Maker:
http://source.squeak.org/VMMaker/VMMaker.oscog-eem.1084.mcz

==================== Summary ====================

Name: VMMaker.oscog-eem.1084
Author: eem
Time: 4 March 2015, 5:06:14.325 pm
UUID: 915a7f50-4ff8-4962-b397-7f91aa58c144
Ancestors: VMMaker.oscog-eem.1083

Simulator:
Fix slip in ioMousePoint (thanks Nicolas)

=============== Diff against VMMaker.oscog-eem.1083 ===============

Item was changed:
  ----- Method: CogVMSimulator>>ioMousePoint (in category 'I/O primitives') -----
  ioMousePoint
  	| relPt |
+ 	^displayForm
+ 		ifNil: [99 << 16 + 66]
+ 		ifNotNil: [relPt := Sensor cursorPoint - self displayLocation.
- 	^displayForm == nil
- 		ifTrue: [99 < 16 + 66]
- 		ifFalse: [relPt := Sensor cursorPoint - self displayLocation.
  				relPt x << 16 + relPt y]!

Item was changed:
  ----- Method: StackInterpreterSimulator>>ioMousePoint (in category 'I/O primitives') -----
  ioMousePoint
  	| relPt |
+ 	^displayForm
+ 		ifNil: [99 << 16 + 66]
+ 		ifNotNil: [relPt := Sensor cursorPoint - self displayLocation.
- 	^displayForm == nil
- 		ifTrue: [99 < 16 + 66]
- 		ifFalse: [relPt := Sensor cursorPoint - self displayLocation.
  				relPt x << 16 + relPt y]!



More information about the Vm-dev mailing list