citra/src
Lioncash 432e847c24 core/memory: Remove unnecessary memory zeroing in MemorySystem::Impl
std::make_unique for arrays is equivalent to doing:

std::unique_ptr<T>(new typename std::remove_extent<T>::type[size]())

(note the ending () after the array size specifier). This means that the
default value within memory for the constructed types will be whatever
the default constructor for that type does. Given the built-in
type for std::uint8_t doesn't have a constructor, this is equivalent to
forcing zero-initialization, so the memory will already be zeroed out on
construction. Because of that, there's no need to zero it out again.
2018-12-27 00:35:53 -05:00
..
android android: set up cmake 2018-11-20 14:24:19 -05:00
audio_core Memory: move GetPhysicalPointer and IsValidPhysicalAddress into class 2018-12-05 20:21:14 -05:00
citra network, citra_qt: Give moderation permission to community mods 2018-12-15 20:28:03 +08:00
citra_qt Merge pull request #4489 from FearlessTobi/port-ui-stuff 2018-12-21 20:52:14 -05:00
common core, web_service: Changes to announce service 2018-12-15 11:02:52 +08:00
core core/memory: Remove unnecessary memory zeroing in MemorySystem::Impl 2018-12-27 00:35:53 -05:00
dedicated_room network: Make citra mods optional and disabled by default 2018-12-15 22:47:07 +08:00
input_common Merge pull request #4193 from B3n30/controller5 2018-10-17 10:49:21 -04:00
network network: Make citra mods optional and disabled by default 2018-12-15 22:47:07 +08:00
tests Core, test: perform kernel and memory destruction in the correct order 2018-12-10 23:29:08 -05:00
video_core gl_rasterizer_cache/MortonCopy: avoid read/write to invalid address 2018-12-09 13:20:44 -05:00
web_service web_service: Change endpoint to /lobby. 2018-12-16 10:48:42 +08:00
.clang-format Remove special rules for Windows.h and library includes 2016-09-21 00:16:33 -07:00
CMakeLists.txt android: set up cmake 2018-11-20 14:24:19 -05:00