diff options
| author | 2018-06-20 16:46:14 -0400 | |
|---|---|---|
| committer | 2018-06-20 16:46:14 -0400 | |
| commit | c3e95086b66dfa4214892dcddb9fd6f865037c1e (patch) | |
| tree | 859f41acecbdcfcbdf19df80903a045d6e2b0bcb /src/core | |
| parent | Implement GetAvailableLanguageCodes2 (#575) (diff) | |
| parent | Build: Fixed some MSVC warnings in various parts of the code. (diff) | |
| download | yuzu-c3e95086b66dfa4214892dcddb9fd6f865037c1e.tar.gz yuzu-c3e95086b66dfa4214892dcddb9fd6f865037c1e.tar.xz yuzu-c3e95086b66dfa4214892dcddb9fd6f865037c1e.zip | |
Merge pull request #576 from Subv/warnings1
Build: Fixed some MSVC warnings in various parts of the code.
Diffstat (limited to 'src/core')
| -rw-r--r-- | src/core/file_sys/partition_filesystem.cpp | 6 | ||||
| -rw-r--r-- | src/core/file_sys/partition_filesystem.h | 6 | ||||
| -rw-r--r-- | src/core/hle/kernel/svc.cpp | 4 | ||||
| -rw-r--r-- | src/core/hle/service/audio/audren_u.cpp | 2 | ||||
| -rw-r--r-- | src/core/hle/service/nvdrv/devices/nvhost_gpu.cpp | 3 |
5 files changed, 11 insertions, 10 deletions
diff --git a/src/core/file_sys/partition_filesystem.cpp b/src/core/file_sys/partition_filesystem.cpp index 808254ecc..86a01a5eb 100644 --- a/src/core/file_sys/partition_filesystem.cpp +++ b/src/core/file_sys/partition_filesystem.cpp | |||
| @@ -73,21 +73,21 @@ u32 PartitionFilesystem::GetNumEntries() const { | |||
| 73 | return pfs_header.num_entries; | 73 | return pfs_header.num_entries; |
| 74 | } | 74 | } |
| 75 | 75 | ||
| 76 | u64 PartitionFilesystem::GetEntryOffset(int index) const { | 76 | u64 PartitionFilesystem::GetEntryOffset(u32 index) const { |
| 77 | if (index > GetNumEntries()) | 77 | if (index > GetNumEntries()) |
| 78 | return 0; | 78 | return 0; |
| 79 | 79 | ||
| 80 | return content_offset + pfs_entries[index].fs_entry.offset; | 80 | return content_offset + pfs_entries[index].fs_entry.offset; |
| 81 | } | 81 | } |
| 82 | 82 | ||
| 83 | u64 PartitionFilesystem::GetEntrySize(int index) const { | 83 | u64 PartitionFilesystem::GetEntrySize(u32 index) const { |
| 84 | if (index > GetNumEntries()) | 84 | if (index > GetNumEntries()) |
| 85 | return 0; | 85 | return 0; |
| 86 | 86 | ||
| 87 | return pfs_entries[index].fs_entry.size; | 87 | return pfs_entries[index].fs_entry.size; |
| 88 | } | 88 | } |
| 89 | 89 | ||
| 90 | std::string PartitionFilesystem::GetEntryName(int index) const { | 90 | std::string PartitionFilesystem::GetEntryName(u32 index) const { |
| 91 | if (index > GetNumEntries()) | 91 | if (index > GetNumEntries()) |
| 92 | return ""; | 92 | return ""; |
| 93 | 93 | ||
diff --git a/src/core/file_sys/partition_filesystem.h b/src/core/file_sys/partition_filesystem.h index 573c90057..65cf572f4 100644 --- a/src/core/file_sys/partition_filesystem.h +++ b/src/core/file_sys/partition_filesystem.h | |||
| @@ -27,9 +27,9 @@ public: | |||
| 27 | Loader::ResultStatus Load(const std::vector<u8>& file_data, size_t offset = 0); | 27 | Loader::ResultStatus Load(const std::vector<u8>& file_data, size_t offset = 0); |
| 28 | 28 | ||
| 29 | u32 GetNumEntries() const; | 29 | u32 GetNumEntries() const; |
| 30 | u64 GetEntryOffset(int index) const; | 30 | u64 GetEntryOffset(u32 index) const; |
| 31 | u64 GetEntrySize(int index) const; | 31 | u64 GetEntrySize(u32 index) const; |
| 32 | std::string GetEntryName(int index) const; | 32 | std::string GetEntryName(u32 index) const; |
| 33 | u64 GetFileOffset(const std::string& name) const; | 33 | u64 GetFileOffset(const std::string& name) const; |
| 34 | u64 GetFileSize(const std::string& name) const; | 34 | u64 GetFileSize(const std::string& name) const; |
| 35 | 35 | ||
diff --git a/src/core/hle/kernel/svc.cpp b/src/core/hle/kernel/svc.cpp index 097416e9e..69ba7b777 100644 --- a/src/core/hle/kernel/svc.cpp +++ b/src/core/hle/kernel/svc.cpp | |||
| @@ -749,7 +749,7 @@ static ResultCode SetThreadCoreMask(Handle thread_handle, u32 core, u64 mask) { | |||
| 749 | ASSERT(thread->owner_process->ideal_processor != THREADPROCESSORID_DEFAULT); | 749 | ASSERT(thread->owner_process->ideal_processor != THREADPROCESSORID_DEFAULT); |
| 750 | // Set the target CPU to the one specified in the process' exheader. | 750 | // Set the target CPU to the one specified in the process' exheader. |
| 751 | core = thread->owner_process->ideal_processor; | 751 | core = thread->owner_process->ideal_processor; |
| 752 | mask = 1 << core; | 752 | mask = 1ull << core; |
| 753 | } | 753 | } |
| 754 | 754 | ||
| 755 | if (mask == 0) { | 755 | if (mask == 0) { |
| @@ -766,7 +766,7 @@ static ResultCode SetThreadCoreMask(Handle thread_handle, u32 core, u64 mask) { | |||
| 766 | } | 766 | } |
| 767 | 767 | ||
| 768 | // Error out if the input core isn't enabled in the input mask. | 768 | // Error out if the input core isn't enabled in the input mask. |
| 769 | if (core < Core::NUM_CPU_CORES && (mask & (1 << core)) == 0) { | 769 | if (core < Core::NUM_CPU_CORES && (mask & (1ull << core)) == 0) { |
| 770 | return ResultCode(ErrorModule::Kernel, ErrCodes::InvalidCombination); | 770 | return ResultCode(ErrorModule::Kernel, ErrCodes::InvalidCombination); |
| 771 | } | 771 | } |
| 772 | 772 | ||
diff --git a/src/core/hle/service/audio/audren_u.cpp b/src/core/hle/service/audio/audren_u.cpp index 6e8002bc9..c7653f654 100644 --- a/src/core/hle/service/audio/audren_u.cpp +++ b/src/core/hle/service/audio/audren_u.cpp | |||
| @@ -328,7 +328,7 @@ bool AudRenU::IsFeatureSupported(AudioFeatures feature, u32_le revision) const { | |||
| 328 | u32_be version_num = (revision - Common::MakeMagic('R', 'E', 'V', '0')); // Byte swap | 328 | u32_be version_num = (revision - Common::MakeMagic('R', 'E', 'V', '0')); // Byte swap |
| 329 | switch (feature) { | 329 | switch (feature) { |
| 330 | case AudioFeatures::Splitter: | 330 | case AudioFeatures::Splitter: |
| 331 | return version_num >= 2; | 331 | return version_num >= 2u; |
| 332 | default: | 332 | default: |
| 333 | return false; | 333 | return false; |
| 334 | } | 334 | } |
diff --git a/src/core/hle/service/nvdrv/devices/nvhost_gpu.cpp b/src/core/hle/service/nvdrv/devices/nvhost_gpu.cpp index 79aab87f9..ed7b6dc03 100644 --- a/src/core/hle/service/nvdrv/devices/nvhost_gpu.cpp +++ b/src/core/hle/service/nvdrv/devices/nvhost_gpu.cpp | |||
| @@ -121,8 +121,9 @@ u32 nvhost_gpu::AllocateObjectContext(const std::vector<u8>& input, std::vector< | |||
| 121 | } | 121 | } |
| 122 | 122 | ||
| 123 | u32 nvhost_gpu::SubmitGPFIFO(const std::vector<u8>& input, std::vector<u8>& output) { | 123 | u32 nvhost_gpu::SubmitGPFIFO(const std::vector<u8>& input, std::vector<u8>& output) { |
| 124 | if (input.size() < sizeof(IoctlSubmitGpfifo)) | 124 | if (input.size() < sizeof(IoctlSubmitGpfifo)) { |
| 125 | UNIMPLEMENTED(); | 125 | UNIMPLEMENTED(); |
| 126 | } | ||
| 126 | IoctlSubmitGpfifo params{}; | 127 | IoctlSubmitGpfifo params{}; |
| 127 | std::memcpy(¶ms, input.data(), sizeof(IoctlSubmitGpfifo)); | 128 | std::memcpy(¶ms, input.data(), sizeof(IoctlSubmitGpfifo)); |
| 128 | NGLOG_WARNING(Service_NVDRV, "(STUBBED) called, gpfifo={:X}, num_entries={:X}, flags={:X}", | 129 | NGLOG_WARNING(Service_NVDRV, "(STUBBED) called, gpfifo={:X}, num_entries={:X}, flags={:X}", |