Buchempfehlung
Windows System Programming
Windows System Programming
Das Kompendium liefert viele interessante Informationen zur Windows-Programmierung auf Englisch. [Mehr Infos...]
FreeBASIC-Chat
Es sind Benutzer im FreeBASIC-Chat online.
(Stand:  )
FreeBASIC bei Twitter
Twitter FreeBASIC-Nachrichten jetzt auch über Twitter erhalten. Follow us!

fb:porticula NoPaste

Info
Info / Hilfe
Liste
Übersicht / Liste
Neu
Datei hochladen
Suche
Quellcode suchen
Download
Dateidownload

Geht nicht: BLOAD-Code

Uploader:RedakteurJojo
Datum/Zeit:06.11.2007 18:40:55

Sub Menu_LoadPart(File As String, pX As Integer, pY As Integer)
    Dim tempptr As Any Ptr, fr As Integer, sx As Integer, sy As Integer
    File = "gamedata" + slash + "img" + slash + File + ".bmp"
    fr = FreeFile
    Open File For Binary As #fr
    Get #fr,19,sx
    Get #fr,23,sy
    Close #fr
    tempptr = ImageCreate(sx,sy)
    BLoad File, tempptr
    Put(pX, pY), tempptr, trans
    ImageDestroy tempptr
End Sub