From b75996138a7f694fd9e578aad66ace9d177dec51 Mon Sep 17 00:00:00 2001 From: Ivan Epifanov Date: Mon, 11 Apr 2022 23:31:09 +0300 Subject: [PATCH] Vita: fix VIDEO_VITA_PVR flag --- CMakeLists.txt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index eb668bc47..9ee7ba16c 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -2311,10 +2311,10 @@ elseif(VITA) list(APPEND EXTRA_LIBS pib ) - set(HAVE_VITA_PIB ON) + set(HAVE_VIDEO_VITA_PIB ON) set(SDL_VIDEO_VITA_PIB 1) else() - set(HAVE_VITA_PIB OFF) + set(HAVE_VIDEO_VITA_PIB OFF) endif() endif() @@ -2335,7 +2335,7 @@ elseif(VITA) libIMGEGL_stub_weak ) - set(HAVE_VITA_PVR ON) + set(HAVE_VIDEO_VITA_PVR ON) set(SDL_VIDEO_VITA_PVR 1) if(HAVE_GL4ES_H) @@ -2347,7 +2347,7 @@ elseif(VITA) endif() else() - set(HAVE_VITA_PVR OFF) + set(HAVE_VIDEO_VITA_PVR OFF) endif() endif()