Ok, I'm not really a beginner at basic...just at Purebasic
Anyway, I'll be darned if I can figure out what I'm doing wrong here:
Code: Select all
Structure ModStructure
ModName.s ; Name of the mod (internal) Max 20 characters
ModSize.l ; File\memory size
Channels.b ; 4,6 or 8
EndStructure
PBMod.ModStructure\ModName.s = "blahblah"
In BB, they must be 'created' first:
Code: Select all
Type ModStructure
Field Name$
Field Size
Field Channels
End Type
BBMod.ModStructure = New ModStructure
BBMod\Name$ = "blahblah"
Thanks
Russell
***Commodore 64 - Over one million cycles per second, 16 vibrant colors, 3 incredible audio channels and 38,911 Basic Bytes Free! Who could ask for anything more?***
