Skip to content

Commit 4fee520

Browse files
committed
inc/projmain.h: use lower case for the project movie names
Since Linux uses a case-sensitive filesystem, the project movie names must also be in lower case in order to locate the files. This fixes the Project Gadget in the "Movie Techniques" section of the Projects Room on Linux.
1 parent e49ee35 commit 4fee520

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

inc/projmain.h

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,12 @@
1010
// the following are the file names of the project movies loaded into the workspace
1111
// localize at will...
1212

13-
#define PROJECT1_MOVIENAME "DIALOGUE.3mm"
14-
#define PROJECT2_MOVIENAME "JOG.3mm"
15-
#define PROJECT3_MOVIENAME "SURPRISE.3mm"
16-
#define PROJECT4_MOVIENAME "MUMMY.3mm"
17-
#define PROJECT5_MOVIENAME "BONGO.3mm"
18-
#define PROJECT6_MOVIENAME "BRIDGE.3mm"
13+
#define PROJECT1_MOVIENAME "dialogue.3mm"
14+
#define PROJECT2_MOVIENAME "jog.3mm"
15+
#define PROJECT3_MOVIENAME "surprise.3mm"
16+
#define PROJECT4_MOVIENAME "mummy.3mm"
17+
#define PROJECT5_MOVIENAME "bongo.3mm"
18+
#define PROJECT6_MOVIENAME "bridge.3mm"
1919

2020
// gadget objects
2121
#define kidGadgetPersistent 0x00003030

0 commit comments

Comments
 (0)