Skip to content

Commit

Permalink
Updated to newest SDK
Browse files Browse the repository at this point in the history
  • Loading branch information
TheOfficialFloW committed Sep 15, 2017
1 parent 07fc3ce commit 476e99f
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 8 deletions.
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ project(VitaShell)
include("${VITASDK}/share/vita.cmake" REQUIRED)
set(VITA_APP_NAME "VitaShell")
set(VITA_TITLEID "VITASHELL")
set(VITA_VERSION "01.62")
set(VITA_VERSION "01.63")

# Flags and includes
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wall -O3 -Wno-unused-variable -Wno-unused-but-set-variable -fno-lto")
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wall -O3 -Wno-unused-variable -Wno-unused-but-set-variable -Wno-format-truncation -fno-lto")
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11 -fno-rtti -fno-exceptions")
set(VITA_MKSFOEX_FLAGS "${VITA_MKSFOEX_FLAGS} -d PARENTAL_LEVEL=1")
set(VITA_MAKE_FSELF_FLAGS "${VITA_MAKE_FSELF_FLAGS} -a 0x2800000000000001")
Expand Down
10 changes: 5 additions & 5 deletions init.c
Original file line number Diff line number Diff line change
Expand Up @@ -289,7 +289,7 @@ static void loadScePaf() {
buf[2] = 0;
buf[3] = 0;

sceSysmoduleLoadModuleInternalWithArg(SCE_SYSMODULE_PAF, sizeof(scepaf_argp), scepaf_argp, buf);
sceSysmoduleLoadModuleInternalWithArg(SCE_SYSMODULE_INTERNAL_PAF, sizeof(scepaf_argp), scepaf_argp, buf);
}

void installDefaultFiles() {
Expand Down Expand Up @@ -344,8 +344,8 @@ void initVitaShell() {
// Load modules
loadScePaf();

sceSysmoduleLoadModuleInternal(SCE_SYSMODULE_PROMOTER_UTIL);
sceSysmoduleLoadModuleInternal(SCE_SYSMODULE_VIDEO_EXPORT);
sceSysmoduleLoadModuleInternal(SCE_SYSMODULE_INTERNAL_PROMOTER_UTIL);
sceSysmoduleLoadModule(SCE_SYSMODULE_VIDEO_EXPORT);
sceSysmoduleLoadModule(SCE_SYSMODULE_PGF);
sceSysmoduleLoadModule(SCE_SYSMODULE_MUSIC_EXPORT);
sceSysmoduleLoadModule(SCE_SYSMODULE_PHOTO_EXPORT);
Expand Down Expand Up @@ -387,6 +387,6 @@ void finishVitaShell() {
sceSysmoduleUnloadModule(SCE_SYSMODULE_PHOTO_EXPORT);
sceSysmoduleUnloadModule(SCE_SYSMODULE_MUSIC_EXPORT);
sceSysmoduleUnloadModule(SCE_SYSMODULE_PGF);
sceSysmoduleUnloadModuleInternal(SCE_SYSMODULE_VIDEO_EXPORT);
sceSysmoduleUnloadModuleInternal(SCE_SYSMODULE_PROMOTER_UTIL);
sceSysmoduleUnloadModule(SCE_SYSMODULE_VIDEO_EXPORT);
sceSysmoduleUnloadModuleInternal(SCE_SYSMODULE_INTERNAL_PROMOTER_UTIL);
}
2 changes: 1 addition & 1 deletion pkg/sce_sys/livearea/contents/template.xml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
<frame id="frame4">
<liveitem>
<text align="left" text-align="left" word-wrap="off" ellipsis="on">
<str size="18" color="#ffffff" shadow="on">v1.62</str>
<str size="18" color="#ffffff" shadow="on">v1.63</str>
</text>
</liveitem>
</frame>
Expand Down
7 changes: 7 additions & 0 deletions resources/changeinfo.txt
Original file line number Diff line number Diff line change
Expand Up @@ -259,4 +259,11 @@
- Fixed bug where the cursor was moving too fast when the headphone was plugged in.<br>
]]>
</changes>
<changes app_ver="01.63">
<![CDATA[
- Added ability to export video files.<br>
- Added support for PSVSD uma0: mounting.<br>
- Fixed bug where the right analog stick was simulated when the headphone was plugged in.<br>
]]>
</changes>
</changeinfo>

0 comments on commit 476e99f

Please sign in to comment.