ignore 1.9.3

something with the integer encodings doesn’t quite sync
This commit is contained in:
Torsten Ruger
2015-09-27 22:56:20 +03:00
parent 4186405930
commit 501da4d922
2 changed files with 1 additions and 2 deletions

View File

@ -112,7 +112,7 @@ module Interpreter
def execute_GetSlot
object = object_for( @instruction.array )
value = object.internal_object_get( @instruction.index )
value = value.object_id unless value.is_a? Integer
value = value.object_id unless value.is_a? Fixnum
set_register( @instruction.register , value )
true
end