<feed xmlns='http://www.w3.org/2005/Atom'>
<title>yuzu/src/core/file_sys/vfs_vector.cpp, branch main</title>
<subtitle>Nintendo Switch emulator</subtitle>
<link rel='alternate' type='text/html' href='https://git.dog6.net/yuzu/'/>
<entry>
<title>vfs: Move vfs files to their own directory</title>
<updated>2024-01-25T21:40:42+00:00</updated>
<author>
<name>FearlessTobi</name>
<email>thm.frey@gmail.com</email>
</author>
<published>2024-01-16T05:23:01+00:00</published>
<link rel='alternate' type='text/html' href='https://git.dog6.net/yuzu/commit/?id=0f9288e38d80c6c63a545934557501fae40d3d83'/>
<id>0f9288e38d80c6c63a545934557501fae40d3d83</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>romfs: use vfs_cached for romfs output</title>
<updated>2023-06-03T12:56:59+00:00</updated>
<author>
<name>Liam</name>
<email>byteslice@airmail.cc</email>
</author>
<published>2023-06-03T12:56:59+00:00</published>
<link rel='alternate' type='text/html' href='https://git.dog6.net/yuzu/commit/?id=6e23c84669d4d6a2cf9ed2ee5cfc0332c6d738db'/>
<id>6e23c84669d4d6a2cf9ed2ee5cfc0332c6d738db</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>vfs_vector: avoid n^2 lookup in layeredfs building</title>
<updated>2023-05-07T20:50:35+00:00</updated>
<author>
<name>Liam</name>
<email>byteslice@airmail.cc</email>
</author>
<published>2023-05-07T05:19:13+00:00</published>
<link rel='alternate' type='text/html' href='https://git.dog6.net/yuzu/commit/?id=5792a72c29dbc7af6a28603136206e97ef58943d'/>
<id>5792a72c29dbc7af6a28603136206e97ef58943d</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>general: Convert source file copyright comments over to SPDX</title>
<updated>2022-04-23T09:55:32+00:00</updated>
<author>
<name>Morph</name>
<email>39850852+Morph1984@users.noreply.github.com</email>
</author>
<published>2022-04-23T08:59:50+00:00</published>
<link rel='alternate' type='text/html' href='https://git.dog6.net/yuzu/commit/?id=99ceb03a1cfcf35968cab589ea188a8c406cda52'/>
<id>99ceb03a1cfcf35968cab589ea188a8c406cda52</id>
<content type='text'>
This formats all copyright comments according to SPDX formatting guidelines.
Additionally, this resolves the remaining GPLv2 only licensed files by relicensing them to GPLv2.0-or-later.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This formats all copyright comments according to SPDX formatting guidelines.
Additionally, this resolves the remaining GPLv2 only licensed files by relicensing them to GPLv2.0-or-later.
</pre>
</div>
</content>
</entry>
<entry>
<title>core: Make variable shadowing a compile-time error</title>
<updated>2021-05-16T07:43:16+00:00</updated>
<author>
<name>Lioncash</name>
<email>mathew1800@gmail.com</email>
</author>
<published>2021-05-16T05:46:30+00:00</published>
<link rel='alternate' type='text/html' href='https://git.dog6.net/yuzu/commit/?id=9a07ed53ebe4e27ef1a14e0469037cab9fb7b1e7'/>
<id>9a07ed53ebe4e27ef1a14e0469037cab9fb7b1e7</id>
<content type='text'>
Now that we have most of core free of shadowing, we can enable the
warning as an error to catch anything that may be remaining and also
eliminate this class of logic bug entirely.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Now that we have most of core free of shadowing, we can enable the
warning as an error to catch anything that may be remaining and also
eliminate this class of logic bug entirely.
</pre>
</div>
</content>
</entry>
<entry>
<title>file_sys: Resolve cases of variable shadowing</title>
<updated>2021-05-02T06:59:57+00:00</updated>
<author>
<name>Lioncash</name>
<email>mathew1800@gmail.com</email>
</author>
<published>2021-05-02T06:34:40+00:00</published>
<link rel='alternate' type='text/html' href='https://git.dog6.net/yuzu/commit/?id=1da72c7792e4f68fd44579a713288f6772c193b4'/>
<id>1da72c7792e4f68fd44579a713288f6772c193b4</id>
<content type='text'>
Brings us closer to enabling -Wshadow as an error in the core code.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Brings us closer to enabling -Wshadow as an error in the core code.
</pre>
</div>
</content>
</entry>
<entry>
<title>vfs: Use existing type aliases consistently</title>
<updated>2020-12-10T06:44:43+00:00</updated>
<author>
<name>Lioncash</name>
<email>mathew1800@gmail.com</email>
</author>
<published>2020-12-10T06:31:58+00:00</published>
<link rel='alternate' type='text/html' href='https://git.dog6.net/yuzu/commit/?id=b1657b8c6b4ef07dd6eea92f4559a32ca3e0894a'/>
<id>b1657b8c6b4ef07dd6eea92f4559a32ca3e0894a</id>
<content type='text'>
Makes use of the VirtualDir and VirtualFile aliases across the board
instead of having a few isolated places that don't use it.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Makes use of the VirtualDir and VirtualFile aliases across the board
instead of having a few isolated places that don't use it.
</pre>
</div>
</content>
</entry>
<entry>
<title>file_sys/vfs_vector: Fix ignored offset on Write</title>
<updated>2019-02-24T23:27:49+00:00</updated>
<author>
<name>Frederic L</name>
<email>frederic.laing.development@gmail.com</email>
</author>
<published>2019-02-24T23:27:49+00:00</published>
<link rel='alternate' type='text/html' href='https://git.dog6.net/yuzu/commit/?id=517933adcbeaf251ca15cb34989e889446cf1c92'/>
<id>517933adcbeaf251ca15cb34989e889446cf1c92</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>file_sys: Implement system archive synthesizer for NgWord (806)</title>
<updated>2018-11-23T02:39:10+00:00</updated>
<author>
<name>Zach Hilman</name>
<email>zachhilman@gmail.com</email>
</author>
<published>2018-11-23T02:39:05+00:00</published>
<link rel='alternate' type='text/html' href='https://git.dog6.net/yuzu/commit/?id=86ad1f8db65e9e52795c9601ea120c6fe0e76e29'/>
<id>86ad1f8db65e9e52795c9601ea120c6fe0e76e29</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>vfs: Remove InterpretAsDirectory and related functions</title>
<updated>2018-10-19T18:02:07+00:00</updated>
<author>
<name>Zach Hilman</name>
<email>zachhilman@gmail.com</email>
</author>
<published>2018-10-03T00:04:31+00:00</published>
<link rel='alternate' type='text/html' href='https://git.dog6.net/yuzu/commit/?id=a25d79cfaad99e7659a8123d41dc0969e854259b'/>
<id>a25d79cfaad99e7659a8123d41dc0969e854259b</id>
<content type='text'>
When writing VFS, it initally seemed useful to include a function to in-place convert container files into directories in one homogenous directory structure, but re-evaluating it now there have been plenty of chances to use it and there has always been a better way. Removing as it is unused and likely will not be used.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
When writing VFS, it initally seemed useful to include a function to in-place convert container files into directories in one homogenous directory structure, but re-evaluating it now there have been plenty of chances to use it and there has always been a better way. Removing as it is unused and likely will not be used.
</pre>
</div>
</content>
</entry>
</feed>
