1. get_pixel
- Posted by dcole Mar 12, 2011
- 1255 views
When running version 4 and including font.e.
I keep getting an error:
<0074>:: Errors resolving the following references: E:\EU\MYINCLUDE\font.e <364>: get_pixel
Is there a workaround for this?
Don Cole
2. Re: get_pixel
- Posted by DerekParnell (admin) Mar 12, 2011
- 1223 views
When running version 4 and including font.e.
I keep getting an error:
<0074>:: Errors resolving the following references: E:\EU\MYINCLUDE\font.e <364>: get_pixel
Is there a workaround for this?
OpenEuphoria does not support MS-DOS specific routines, such as its graphics functions like get_pixel. In Euphoria v3, get_pixel is a built-in routine. You are getting this message because Euphoria v4 cannot find any routine called get_pixel.
So you can do a couple of work arounds ...
- Stick to using Euphoria v3's DOS edition (ex.exe)
- Do not include font.e
3. Re: get_pixel
- Posted by dcole Mar 12, 2011
- 1233 views
Thanks Derek,
I just commented out the offending references in font.e (there were only 4),
and that solved that.
Don Cole