Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion source/4.0.6/Core.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -931,7 +931,7 @@ int recurse = 0; // recurse count check

//********** file extensions and flags for linux and Win32 ********************

#ifdef __linux__
#if defined(__linux__) || defined(__ANDROID__)

HOP fd[] ={{".bin","r"}, {"_lst.txt","w"}, {"_msg.txt","w"},
{"_dir.txt","r"},{"_cmt.txt","r"}, {"sad.ini","r"} , {"_dbg.txt","w"} };
Expand Down
9 changes: 9 additions & 0 deletions source/4.0.6/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@
#include <string.h> // linux
#include "shared.h"

#ifdef __ANDROID__
#include "android/log.h"
#endif

int get_config(char **);
void shutdwn (void);
void startup (void);
Expand Down Expand Up @@ -130,6 +134,11 @@ int main (int argc, const char **argv)
prt_stars();
printf ("EEC-IV disassembler Version %s (%s)", SADVERSION, SADDATE);
printf ("\nAbsolutely no warranty or liability");
#ifdef __ANDROID__
printf ("\n");
printf ("\nWARNING: This should be run from the");
printf ("\n'SD card'.");
#endif
prt_stars();

fn = 0;
Expand Down