summaryrefslogtreecommitdiff
path: root/Xenogears/Decrypt.cpp
diff options
context:
space:
mode:
authorPixel <Pixel>2002-09-27 12:17:57 +0000
committerPixel <Pixel>2002-09-27 12:17:57 +0000
commitbfa5de7eccf4604ff8217f619e9685a09e80d545 (patch)
treea5be5de750ac611145f459a09bda902c3dbc1a70 /Xenogears/Decrypt.cpp
parent60c1003845035ad4cd0e9ea50862bad7626faf0e (diff)
The week-without-the-network changes
Diffstat (limited to 'Xenogears/Decrypt.cpp')
-rw-r--r--Xenogears/Decrypt.cpp7
1 files changed, 6 insertions, 1 deletions
diff --git a/Xenogears/Decrypt.cpp b/Xenogears/Decrypt.cpp
index 76289e2..5f606a7 100644
--- a/Xenogears/Decrypt.cpp
+++ b/Xenogears/Decrypt.cpp
@@ -1,6 +1,8 @@
#include<stdio.h>
#include<string.h>
+#include "Main.h"
+CODE_BEGINS
void init_table(long table[5000])
{
long i;
@@ -467,7 +469,7 @@ int decrypt(FILE * f_source, FILE * f_cible, int room_number)
return (0);
}
-int main(void)
+int startup(void) throw (GeneralException)
{
int i;
char file_name[100];
@@ -501,4 +503,7 @@ int main(void)
fclose(f_cible);
}
}
+
+ return 0;
}
+CODE_ENDS