summaryrefslogtreecommitdiff
path: root/src/core
AgeCommit message (Collapse)Author
2021-01-28Merge pull request #5809 from ogniK5377/FlushAudioOutBuffersbunnei
audout: FlushAudioOutBuffers
2021-01-28Merge pull request #5837 from german77/socketstubbunnei
sockets: Stub GetSockOpt
2021-01-28Merge pull request #5840 from Morph1984/prepo-fixLC
prepo: Fix BufferDescriptorX invalid buffer index errors and add New variants of SaveReport
2021-01-28hid: Add static_assert for Parameter sizeMorph
2021-01-28prepo: Fix BufferDescriptorX invalid buffer errors and add "New" variants of ↵Morph
SaveReport The second input buffer could be optional when prepo/srepo is called, test for the availability of the second buffer prior to reading from it.
2021-01-28hle_ipc: Add Can(Read, Write)BufferMorph
Allows us to test whether a buffer can be read from or written to memory
2021-01-27Stub GetSockOptgerman
2021-01-27npad: Remove unused device handle parameterMorph
2021-01-26Merge pull request #5812 from german77/StubSixaxisFusionbunnei
HID: Stub Set/Get/Reset SixaxisSensorFusionParameters
2021-01-26Merge pull request #5810 from ogniK5377/stereo-visionbunnei
hle: Implement remaining services for Stereo Vision
2021-01-26Merge pull request #5824 from ogniK5377/IPsmSessionbunnei
psm: IPsmSession
2021-01-25Merge pull request #5774 from ogniK5377/mii-raw-randombunnei
mii: Fix BuildRandomStoreData & Cleanup raw_data
2021-01-25Merge pull request #5771 from ogniK5377/lm-reworkbunnei
lm: Recode LM service
2021-01-25Omit system referenceChloe Marcec
2021-01-25psm: IPsmSessionChloe Marcec
Used by homebrew menu
2021-01-24Merge pull request #5799 from ogniK5377/event-register-unregisterbunnei
nvdrv: Unregister already registered events
2021-01-24Merge pull request #5151 from comex/xx-vfsbunnei
vfs_real: When moving files or directories, don't assume file opening will succeed
2021-01-24Stub Set/Get/Reset SixaxisSensorFusionParametersgerman
2021-01-25Print Process ID and Thread ID as hexChloe Marcec
2021-01-25hle: Implement remaining services for Stereo VisionChloe Marcec
Used by Zelda Breath of the Wild, Super Mario Odyssey and Nintendo Labo
2021-01-24audout: FlushAudioOutBuffersChloe Marcec
Fixes Devil May Cry
2021-01-23Merge pull request #5806 from bunnei/am-stubbunnei
hle: service: am: Stub ILibraryAppletAccessor::PresetLibraryAppletGpuTimeSliceZero.
2021-01-23vfs_real: When moving files or directories, don't assume file opening will ↵comex
succeed Found this via a warning, but it's a substantive fix. Since this is only for a cache, it should be safe to silently drop the entry if opening fails. I think.
2021-01-23Simplify conditionChloe Marcec
2021-01-23nvdrv: Unregister already registered eventsChloe Marcec
2021-01-23Clamp string reads to buffer sizeChloe Marcec
2021-01-22Merge pull request #5776 from ogniK5377/lblbunnei
lbl: Implement most of lbl
2021-01-22Merge pull request #5765 from ogniK5377/StoreSaveDataThumbnail-stubbunnei
acc: Stub StoreSaveDataThumbnail
2021-01-20Merge pull request #5270 from german77/multiTouchbunnei
HID: Add multitouch support
2021-01-20hle: service: am: Stub ↵bunnei
ILibraryAppletAccessor::PresetLibraryAppletGpuTimeSliceZero. - Used by Monster Hunter Rise demo.
2021-01-21lbl: Implement most of lblChloe Marcec
Pretty basic service, only thing left to do is handle setting applying once set:sys is implemented
2021-01-20mii: Fix BuildRandomStoreData & Cleanup raw_dataChloe Marcec
Cleaned up mii raw data to reflect the underlying values instead of just a chunk of bytes. Fixed BuildRandomStoreData not actually generating random miis properly. "values" should be a u32, not a u8.
2021-01-20Mark DestinationToString as staticChloe Marcec
2021-01-20Mark LogPacketHeaderEntry hash as noexceptChloe Marcec
2021-01-20lm: Recode LM serviceChloe Marcec
Rework the service to spit out to logs instead of a seperate file as well as fix any crashes caused by lm.
2021-01-19acc: Stub StoreSaveDataThumbnailChloe Marcec
Fixes ACA NEOGEO METAL SLUG hanging on boot.
2021-01-17npad: Add check for HANDHELD_INDEX in UpdateControllerAt()Morph
2021-01-17Merge pull request #5360 from ReinUsesLisp/enforce-memclass-accessbunnei
core: Silence Wclass-memaccess warnings and enforce it
2021-01-16input_interpreter: Mark two member functions as constLioncash
These aren't stateful functions, so we can make use of const. While we're at, we can resolve some -Wdocumentation warnings.
2021-01-16input_interpreter: Add method to check for a button press stateMorph
This allows to check for continuous input for the duration of a button press/hold
2021-01-15Merge pull request #5358 from ReinUsesLisp/rename-insert-paddingLC
common/common_funcs: Rename INSERT_UNION_PADDING_{BYTES,WORDS} to _NOINIT
2021-01-15core/cmake: Enforce Wclass-memaccessReinUsesLisp
Treat -Wclass-memaccess as an error.
2021-01-15core: Silence Wclass-memaccess warningsReinUsesLisp
This requires making several types trivial and properly initialize them whenever they are called.
2021-01-15common/common_funcs: Rename INSERT_UNION_PADDING_{BYTES,WORDS} to _NOINITReinUsesLisp
INSERT_PADDING_BYTES_NOINIT is more descriptive of the underlying behavior.
2021-01-15Always initialize keyboard inputgerman
2021-01-15Add mutitouch support for touch screensgerman
2021-01-15Allow to return up to 16 touch inputs per enginegerman
2021-01-15Allow all touch inputs at the same time and remove config options that are ↵german
not longer necesary
2021-01-15Add multitouch supportgerman
2021-01-15common/bit_util: Replace CLZ/CTZ operations with standardized onesLioncash
Makes for less code that we need to maintain.