On Fri, 26 Nov 2004, Paul N. Lee wrote:
Jim Muth wrote:
Vortex Swirling wrote:
On my fractal dedicated machine running DOS 6.22 I can raise the degree to 237 without problems. But it defaults back to 16 at 238. I am using the most recent developer's release of Fractint.
Maybe if you chanj the background priority to 257 and the foreground priority to 509. _______ REM Erastosthenes would kill me for using this method. OPTION BASE 0 DIM prime, g AS INTEGER DIM test, d AS LONG OPEN "primes" FOR OUTPUT AS #1 primes(0) = 2 test = 3 primes(1) = 3 WRITE #1, primes(0), primes(1) FOR g = 1 TO 256 test = test + 2 prime = 1 FOR d = 2 TO test / 2 IF test MOD d = 0 THEN prime = 0 GOTO 50 END IF 50 NEXT d IF prime = 1 THEN WRITE #1, test PRINT test; IF test > 36 THEN SOUND test, 1 END IF ELSE g = g - 1 END IF 100 NEXT g CLOSE #1 END