Advertisement
jargon

fbc pdun007c.bas

Sep 18th, 2020
2,170
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. D:\pdun007c>fbc pdun007c.bas
  2. pdun007c.bas(6) error 59: Illegal specification, at parameter 4 (buffer) of loadmem()
  3.         declare sub loadmem(fn as string,w as integer,h as integer,buffer as fb.Image Ptr)
  4.                                                                              ^
  5. pdun007c.bas(11) error 14: Expected identifier, found 'fb.Image'
  6.         Dim As fb.Image Ptr GA = ImageCreate(16, 16)    'brick03.mem
  7.                ^
  8. pdun007c.bas(12) error 14: Expected identifier, found 'fb.Image'
  9.         Dim As fb.Image Ptr GB = ImageCreate(16, 16)    'flame01.mem
  10.                ^
  11. pdun007c.bas(13) error 14: Expected identifier, found 'fb.Image'
  12.         Dim As fb.Image Ptr GC = ImageCreate(16, 16)    'flame02.mem
  13.                ^
  14. pdun007c.bas(14) error 14: Expected identifier, found 'fb.Image'
  15.         Dim As fb.Image Ptr GD = ImageCreate(16, 16)    'skull01.mem
  16.                ^
  17. pdun007c.bas(15) error 14: Expected identifier, found 'fb.Image'
  18.         Dim As fb.Image Ptr GR = ImageCreate(16, 16)    'dereck1.mem
  19.                ^
  20. pdun007c.bas(16) error 14: Expected identifier, found 'fb.Image'
  21.         Dim As fb.Image Ptr GM = ImageCreate(64, 32)    'map002.mem
  22.                ^
  23. pdun007c.bas(47) error 59: Illegal specification, at parameter 4 (buffer) of loadmem()
  24. sub loadmem(fn as string,w as integer,h as integer,buffer as fb.Image Ptr)
  25.                                                              ^
  26. pdun007c.bas(49) warning 5(0): Implicit conversion
  27. pdun007c.bas(67) error 28: Expected pointer
  28.         GET (0, 0)-(w-1, h-1), buffer
  29.                                ^
  30. pdun007c.bas(71) error 3: Expected End-of-Line, found '('
  31. loadmem "brick03.mem",16,16,GA()
  32.                                ^
  33. pdun007c.bas(71) error 133: Too many errors, exiting
  34.  
  35. D:\pdun007c>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement