aboutsummaryrefslogtreecommitdiff
path: root/tools/combiner
diff options
context:
space:
mode:
authorcnlohr <lohr85@gmail.com>2017-01-24 01:27:56 -0500
committercnlohr <lohr85@gmail.com>2017-01-24 01:27:56 -0500
commit35b8ec2f210022c1e4e1c2e8efd8596a0a971ed9 (patch)
treeb6c5662f6143f6d0462271480f3c917b88802acc /tools/combiner
parent82581bbb0ce3861d9694f176f66d7b63198398cd (diff)
downloadlibsurvive-35b8ec2f210022c1e4e1c2e8efd8596a0a971ed9.tar.gz
libsurvive-35b8ec2f210022c1e4e1c2e8efd8596a0a971ed9.tar.bz2
Update combiner to use new camfind
Diffstat (limited to 'tools/combiner')
-rw-r--r--tools/combiner/combiner.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/combiner/combiner.c b/tools/combiner/combiner.c
index cd724ce..1192ab3 100644
--- a/tools/combiner/combiner.c
+++ b/tools/combiner/combiner.c
@@ -7,8 +7,8 @@ uint8_t lo[131072*4];
int main()
{
- FILE * l = fopen( "l_lighthouse.dat", "rb" );
- FILE * r = fopen( "r_lighthouse.dat", "rb" );
+ FILE * l = fopen( "L_lighthouse.dat", "rb" );
+ FILE * r = fopen( "R_lighthouse.dat", "rb" );
FILE * o = fopen( "dual_lighthouse.dat", "wb" );
fread( rd, 131072, 1, r );
fread( ld, 131072, 1, l );