We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 714b750 commit c47671dCopy full SHA for c47671d
1 file changed
source/in_ctr.c
@@ -114,7 +114,7 @@ void IN_Init (void)
114
115
tmode = 1;
116
Cvar_RegisterVariable (&m_filter);
117
- FILE *texture = fopen("/touchpadOverlay.bin", "rb");
+ FILE *texture = fopen("touchpadOverlay.bin", "rb");
118
if(!texture)
119
Sys_Error("Could not open touchpadOverlay.bin\n");
120
fseek(texture, 0, SEEK_END);
@@ -123,7 +123,7 @@ void IN_Init (void)
123
touchpadOverlay = malloc(size);
124
fread(touchpadOverlay, 1, size, texture);
125
fclose(texture);
126
- texture = fopen("/keyboardOverlay.bin", "rb");
+ texture = fopen("keyboardOverlay.bin", "rb");
127
128
Sys_Error("Could not open keyboardOverlay.bin\n");
129
0 commit comments