Skip to content

Commit b830552

Browse files
committed
format
1 parent 6443255 commit b830552

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

src/gfx.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -176,11 +176,11 @@ void gfx_init(void)
176176
gfx_init2();
177177
gfx_init3();
178178
gfx_init_32x32();
179-
gfx_init_48x48();
180-
gfx_init_64x64();
181179
gfx_init4();
180+
gfx_init_48x48();
182181
gfx_init5();
183182
gfx_init6();
183+
gfx_init_64x64();
184184
gfx_init7();
185185
gfx_init8();
186186
gfx_init9();

src/my_charmap.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ enum {
1111
CHARMAP_DOWN = 'v',
1212
CHARMAP_DUNGEON_ENTRANCE = 'S',
1313
CHARMAP_DUNGEON_EXIT = 'E',
14+
CHARMAP_DUNGEON_WALL = 'x',
1415
CHARMAP_EMPTY = '.',
1516
CHARMAP_KEY = 'k',
1617
CHARMAP_LEFT = '<',
@@ -21,7 +22,6 @@ enum {
2122
CHARMAP_SECRET_DOOR = 's',
2223
CHARMAP_TREASURE = '$',
2324
CHARMAP_UP = '^',
24-
CHARMAP_DUNGEON_WALL = 'x',
2525
CHARMAP_WILDCARD = '*',
2626
// end sort marker1 }
2727
};

src/my_tp.hpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -38,11 +38,11 @@ class Tp
3838
bool is_blit_tiled {};
3939
bool is_dungeon_entrance {};
4040
bool is_dungeon_exit {};
41+
bool is_dungeon_floor {};
42+
bool is_dungeon_wall {};
4143
bool is_key {};
4244
bool is_monst1 {};
4345
bool is_player {};
44-
bool is_dungeon_wall {};
45-
bool is_dungeon_floor {};
4646
// end sort marker1 }
4747

4848
// begin sort marker2 {

src/tp_random.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@
1010
// begin sort marker1 {
1111
static Tpidmap tp_dungeon_entrance;
1212
static Tpidmap tp_dungeon_exit;
13+
static Tpidmap tp_dungeon_floor;
14+
static Tpidmap tp_dungeon_wall;
1315
static Tpidmap tp_key;
1416
static Tpidmap tp_monst1;
1517
static Tpidmap tp_player;
16-
static Tpidmap tp_dungeon_wall;
17-
static Tpidmap tp_dungeon_floor;
1818
// end sort marker1 }
1919

2020
void tp_random_dungeon_init(void)

0 commit comments

Comments
 (0)