04-02-2008, 05:18 PM
mapeditor, however sometimes when i click the tile on the far right (the additional tile) it is the one on the left and one tile down
i changed this code
From this
to this
and then i enlarged the mapeditor's tileviewer area.

From this
Code:
Public Sub EditorInit()
SaveMap = Map
InEditor = True
frmMirage.picMapEditor.Visible = True
With frmMirage.picBackSelect
.Width = 7 * PIC_X
.Height = 255 * PIC_Y
.Picture = LoadPicture(App.Path + "\tiles.bmp")
End With
End Sub
to this
Code:
Public Sub EditorInit()
SaveMap = Map
InEditor = True
frmMirage.picMapEditor.Visible = True
With frmMirage.picBackSelect
.Width = 8 * PIC_X
.Height = 255 * PIC_Y
.Picture = LoadPicture(App.Path + "\tiles.bmp")
End With
End Sub
and then i enlarged the mapeditor's tileviewer area.