Skip to content

Commit c47671d

Browse files
committed
Fix location of overlay files
1 parent 714b750 commit c47671d

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

source/in_ctr.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ void IN_Init (void)
114114

115115
tmode = 1;
116116
Cvar_RegisterVariable (&m_filter);
117-
FILE *texture = fopen("/touchpadOverlay.bin", "rb");
117+
FILE *texture = fopen("touchpadOverlay.bin", "rb");
118118
if(!texture)
119119
Sys_Error("Could not open touchpadOverlay.bin\n");
120120
fseek(texture, 0, SEEK_END);
@@ -123,7 +123,7 @@ void IN_Init (void)
123123
touchpadOverlay = malloc(size);
124124
fread(touchpadOverlay, 1, size, texture);
125125
fclose(texture);
126-
texture = fopen("/keyboardOverlay.bin", "rb");
126+
texture = fopen("keyboardOverlay.bin", "rb");
127127
if(!texture)
128128
Sys_Error("Could not open keyboardOverlay.bin\n");
129129
fseek(texture, 0, SEEK_END);

0 commit comments

Comments
 (0)