Re: problem
- Posted by "Graeme." <hmi at POWERUP.COM.AU> Jun 02, 1998
- 576 views
At 03:05 PM 5/30/98 EDT, you wrote: >---------------------- Information from the mail header ----------------------- >Sender: Euphoria Programming for MS-DOS <EUPHORIA at LISTSERV.MUOHIO.EDU> >Poster: CHARN1407 at AOL.COM >Subject: problem >------------------------------------------------------------------------------- > >I need help. I made these two routines: > >include svga.e >include graphics.e > >atom destination, what, howmuch, junk >destination = allocate (10000) >what = 4 >howmuch = 10000 >junk = graphics_mode (261) --- snip --- >in both procedures putregion and test_putregion! >I assigned them 100. Could someone tell me what is wrong? > >TIA, >Charn If you are using Pete's svga.e you'll have to call svga_mode(261) instead of graphics_mode(261) This initializes it's internal variables (such as bytes_per_line) Graeme ----------------------------------------------------