Skip to content

Commit

Permalink
Fixing a typo and found unknown function
Browse files Browse the repository at this point in the history
I found a missing new line in xboxkrnl_video and corrected it. I also found the name of an unknown function in xam table. Here is my source for it. https://pastebin.com/NbpVq9jG
  • Loading branch information
The-Little-Wolf authored and Gliniak committed May 10, 2024
1 parent b115823 commit 3ff5663
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/xenia/kernel/xam/xam_table.inc
Original file line number Diff line number Diff line change
Expand Up @@ -1663,6 +1663,7 @@ XE_EXPORT(xam, 0x00000AE1, CurlWriteCacheEntryContent,
XE_EXPORT(xam, 0x00000AE2, CurlCloseCacheEntry, kFunction),
XE_EXPORT(xam, 0x00000AE3, CurlEnumerateCacheEntry, kFunction),
XE_EXPORT(xam, 0x00000AE5, CurlWipeBackingFiles, kFunction),
XE_EXPORT(xam, 0x00000AE6, CurlBindFunctionTable, kFunction),
XE_EXPORT(xam, 0x00000AE7, CurlOpenTitleBackingFile, kFunction),
XE_EXPORT(xam, 0x00000AEA, XamUserIsPartialProfile, kFunction),
XE_EXPORT(xam, 0x00000AEB, XamLocateTitle, kFunction),
Expand Down
2 changes: 1 addition & 1 deletion src/xenia/kernel/xboxkrnl/xboxkrnl_video.cc
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

DEFINE_int32(internal_display_resolution, 8,
"Allow game that support different resolutions to be rendered "
"in specific resolution."
"in specific resolution.\n"
" 0=640x480\n"
" 1=640x576\n"
" 2=720x480\n"
Expand Down

0 comments on commit 3ff5663

Please sign in to comment.