Fixing a typo and found unknown function
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
This commit is contained in:
parent
b115823735
commit
3ff5663f5b
|
@ -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),
|
||||
|
|
|
@ -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"
|
||||
|
|
Loading…
Reference in New Issue