diff --git a/android/phoenix/AndroidManifest.xml b/android/phoenix/AndroidManifest.xml index 5d22ea8c3a..a96f7399dc 100644 --- a/android/phoenix/AndroidManifest.xml +++ b/android/phoenix/AndroidManifest.xml @@ -1,6 +1,6 @@ diff --git a/gfx/shader_cg.c b/gfx/shader_cg.c index ba8c25505e..424912e76e 100644 --- a/gfx/shader_cg.c +++ b/gfx/shader_cg.c @@ -1367,20 +1367,16 @@ bool gl_cg_save_cgp(const char *path, const struct gl_cg_cgp_info *info) fprintf(file, "scale0 = %.1f\n", info->fbo_scale); } -#ifndef __CELLOS_LV2__ if (info->lut_texture_path && info->lut_texture_id) { fprintf(file, "textures = %s\n", info->lut_texture_id); fprintf(file, "%s = \"%s\"\n", info->lut_texture_id, info->lut_texture_path); - /* something is breaking in here right now - don't know what it is, but don't bother with it for now */ - fprintf(file, "%s_absolute = %s\n", info->lut_texture_id, info->lut_texture_absolute ? "true" : "false"); } -#endif fclose(file); return true;