Skip to content

Commit d7334ed

Browse files
committed
always enable car tiles
1 parent 3af3a8c commit d7334ed

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

assets.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ namespace microcode {
7171

7272
this.reg = {}
7373
extraSamples(this.reg)
74-
if (car_tiles) carImages(this.reg)
74+
if (CAR_TILES) carImages(this.reg)
7575
jacdacImages(this.reg)
7676
// editor icons
7777
this.reg["delete"] = icondb.btn_delete

config.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,5 @@ namespace userconfig {
1010
namespace microcode {
1111
export const ERROR_NOT_INTEGER = 101
1212
export const ERROR_DOUBLE_BACKGROUND_CAPTURE = 102
13-
export const car_tiles = false
13+
export const CAR_TILES = true
1414
}

tiles.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -263,7 +263,7 @@ namespace microcode {
263263
slider.constraints.allow.tiles = only5
264264
slider.constraints.handling = { terminal: true }
265265

266-
if (car_tiles) {
266+
if (CAR_TILES) {
267267
const wall = makeSensor(TID_SENSOR_CAR_WALL, "value_in", 500)
268268
wall.serviceClassName = "radio"
269269
wall.eventCode = 0x91
@@ -510,7 +510,7 @@ namespace microcode {
510510
m.jdKind = JdKind.Page
511511
})
512512

513-
if (car_tiles) {
513+
if (CAR_TILES) {
514514
const car_commands =
515515
[ 0xfffff001, // forward
516516
0xfffff002, // reverse

0 commit comments

Comments
 (0)