mirror of
https://github.com/libretro/RetroArch
synced 2025-02-06 18:40:49 +00:00
Style / indent nits
This commit is contained in:
parent
cb82728c4c
commit
8e27d23bd5
@ -320,7 +320,8 @@ JNIEnv *jni_thread_getenv(void)
|
||||
{
|
||||
JNIEnv *env;
|
||||
struct android_app* android_app = (struct android_app*)g_android;
|
||||
int status = (*android_app->activity->vm)->AttachCurrentThread(android_app->activity->vm, &env, 0);
|
||||
int status = (*android_app->activity->vm)->
|
||||
AttachCurrentThread(android_app->activity->vm, &env, 0);
|
||||
|
||||
if (status < 0)
|
||||
{
|
||||
@ -342,7 +343,8 @@ static void jni_thread_destruct(void *value)
|
||||
return;
|
||||
|
||||
if (android_app)
|
||||
(*android_app->activity->vm)->DetachCurrentThread(android_app->activity->vm);
|
||||
(*android_app->activity->vm)->
|
||||
DetachCurrentThread(android_app->activity->vm);
|
||||
pthread_setspecific(thread_key, NULL);
|
||||
}
|
||||
|
||||
@ -490,7 +492,8 @@ static void frontend_android_get_environment_settings(int *argc,
|
||||
args->state_path = NULL;
|
||||
}
|
||||
|
||||
CALL_OBJ_METHOD(env, obj, android_app->activity->clazz, android_app->getIntent);
|
||||
CALL_OBJ_METHOD(env, obj, android_app->activity->clazz,
|
||||
android_app->getIntent);
|
||||
RARCH_LOG("Checking arguments passed from intent ...\n");
|
||||
|
||||
// Config file
|
||||
|
@ -151,7 +151,8 @@ static void frontend_ps3_get_environment_settings(int *argc, char *argv[],
|
||||
{
|
||||
RARCH_LOG("cellGameBootCheck() OK.\n");
|
||||
RARCH_LOG("Directory name: [%s].\n", dirName);
|
||||
RARCH_LOG(" HDD Free Size (in KB) = [%d] Size (in KB) = [%d] System Size (in KB) = [%d].\n", size.hddFreeSizeKB, size.sizeKB, size.sysSizeKB);
|
||||
RARCH_LOG(" HDD Free Size (in KB) = [%d] Size (in KB) = [%d] System Size (in KB) = [%d].\n",
|
||||
size.hddFreeSizeKB, size.sizeKB, size.sysSizeKB);
|
||||
|
||||
switch(get_type)
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user