revert to 16x16 rooms as that covers standard bitsy as well as bitsy hd
This commit is contained in:
parent
c4158e2b66
commit
f2d9f84307
|
@ -137,8 +137,7 @@ impl Room {
|
||||||
let mut exits = String::new();
|
let mut exits = String::new();
|
||||||
let mut endings = String::new();
|
let mut endings = String::new();
|
||||||
|
|
||||||
let sqrt = (self.tiles.len() as f64).sqrt() as usize; // 8 for SD, 16 for HD
|
for line in self.tiles.chunks(16) {
|
||||||
for line in self.tiles.chunks(sqrt) {
|
|
||||||
for tile in line {
|
for tile in line {
|
||||||
tiles.push_str(tile);
|
tiles.push_str(tile);
|
||||||
if room_format == RoomFormat::CommaSeparated {
|
if room_format == RoomFormat::CommaSeparated {
|
||||||
|
|
Loading…
Reference in New Issue