Merge branch 'sdl_android' of github.com:pelya/commandergenius

This commit is contained in:
Sergii Pylypenko
2017-01-04 23:02:48 +02:00
12 changed files with 14 additions and 10 deletions

View File

@@ -566,6 +566,10 @@ class SDL_Keys
try {
for(Field f: fields)
{
if( !f.getName().startsWith("SDLK_") )
{
continue;
}
Values.add(f.getInt(null));
Names.add(f.getName().substring(5).toUpperCase());
}

View File

@@ -78,7 +78,7 @@ import android.content.Intent;
// TODO: too much code here, split into multiple files, possibly auto-generated menus?
class Settings
public class Settings
{
static String SettingsFileName = "libsdl-settings.cfg";

View File

@@ -7,10 +7,10 @@ AppName="Commander Genius"
AppFullName=net.sourceforge.clonekeenplus
# Application version code (integer)
AppVersionCode=195300
AppVersionCode=198001
# Application user-visible version name (string)
AppVersionName="1.9.5.3 Beta"
AppVersionName="1.9.8.0 Beta"
# Specify path to download application data in zip archive in the form 'Description|URL|MirrorURL^Description2|URL2|MirrorURL2^...'
# If you'll start Description with '!' symbol it will be enabled by default, other downloads should be selected by user from startup config menu

View File

@@ -118,8 +118,8 @@ extern "C" {
#if !(defined(VMS) || defined(__VMS)) /* VMS uses logical names instead */
#if defined(HEADER_CRYPTLIB_H) && !defined(OPENSSLDIR)
#define ENGINESDIR "/home/gerstrong/workspace/SDLAndroid/project/jni/openssl/build/armeabi-v7a/dist/lib/engines"
#define OPENSSLDIR "/home/gerstrong/workspace/SDLAndroid/project/jni/openssl/build/armeabi-v7a/dist/ssl"
#define ENGINESDIR "/home/pelya/src/endless_space/bochs/sdl/project/jni/openssl/build/armeabi-v7a/dist/lib/engines"
#define OPENSSLDIR "/home/pelya/src/endless_space/bochs/sdl/project/jni/openssl/build/armeabi-v7a/dist/ssl"
#endif
#endif