Commit b830552 1 parent 6443255 commit b830552 Copy full SHA for b830552
File tree 4 files changed +7
-7
lines changed
4 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -176,11 +176,11 @@ void gfx_init(void)
176
176
gfx_init2 ();
177
177
gfx_init3 ();
178
178
gfx_init_32x32 ();
179
- gfx_init_48x48 ();
180
- gfx_init_64x64 ();
181
179
gfx_init4 ();
180
+ gfx_init_48x48 ();
182
181
gfx_init5 ();
183
182
gfx_init6 ();
183
+ gfx_init_64x64 ();
184
184
gfx_init7 ();
185
185
gfx_init8 ();
186
186
gfx_init9 ();
Original file line number Diff line number Diff line change 11
11
CHARMAP_DOWN = ' v' ,
12
12
CHARMAP_DUNGEON_ENTRANCE = ' S' ,
13
13
CHARMAP_DUNGEON_EXIT = ' E' ,
14
+ CHARMAP_DUNGEON_WALL = ' x' ,
14
15
CHARMAP_EMPTY = ' .' ,
15
16
CHARMAP_KEY = ' k' ,
16
17
CHARMAP_LEFT = ' <' ,
21
22
CHARMAP_SECRET_DOOR = ' s' ,
22
23
CHARMAP_TREASURE = ' $' ,
23
24
CHARMAP_UP = ' ^' ,
24
- CHARMAP_DUNGEON_WALL = ' x' ,
25
25
CHARMAP_WILDCARD = ' *' ,
26
26
// end sort marker1 }
27
27
};
Original file line number Diff line number Diff line change @@ -38,11 +38,11 @@ class Tp
38
38
bool is_blit_tiled {};
39
39
bool is_dungeon_entrance {};
40
40
bool is_dungeon_exit {};
41
+ bool is_dungeon_floor {};
42
+ bool is_dungeon_wall {};
41
43
bool is_key {};
42
44
bool is_monst1 {};
43
45
bool is_player {};
44
- bool is_dungeon_wall {};
45
- bool is_dungeon_floor {};
46
46
// end sort marker1 }
47
47
48
48
// begin sort marker2 {
Original file line number Diff line number Diff line change 10
10
// begin sort marker1 {
11
11
static Tpidmap tp_dungeon_entrance;
12
12
static Tpidmap tp_dungeon_exit;
13
+ static Tpidmap tp_dungeon_floor;
14
+ static Tpidmap tp_dungeon_wall;
13
15
static Tpidmap tp_key;
14
16
static Tpidmap tp_monst1;
15
17
static Tpidmap tp_player;
16
- static Tpidmap tp_dungeon_wall;
17
- static Tpidmap tp_dungeon_floor;
18
18
// end sort marker1 }
19
19
20
20
void tp_random_dungeon_init (void )
You can’t perform that action at this time.
0 commit comments