<feed xmlns='http://www.w3.org/2005/Atom'>
<title>dolphin/Source/Core/DolphinWX/Config/GCAdapterConfigDiag.cpp, branch master</title>
<subtitle>GameCube and Wii emulator</subtitle>
<link rel='alternate' type='text/html' href='https://git.dog6.net/dolphin/'/>
<entry>
<title>Remove DolphinWX</title>
<updated>2018-06-26T18:50:39+00:00</updated>
<author>
<name>spycrab</name>
<email>spycrab@users.noreply.github.com</email>
</author>
<published>2018-04-28T10:50:47+00:00</published>
<link rel='alternate' type='text/html' href='https://git.dog6.net/dolphin/commit/?id=44b22c90df9c05d18a34667dc41e8d05af24683f'/>
<id>44b22c90df9c05d18a34667dc41e8d05af24683f</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Make DolphinWX strings more like DolphinQt2 strings</title>
<updated>2017-07-26T06:04:10+00:00</updated>
<author>
<name>JosJuice</name>
<email>josjuice@gmail.com</email>
</author>
<published>2017-07-23T11:11:06+00:00</published>
<link rel='alternate' type='text/html' href='https://git.dog6.net/dolphin/commit/?id=960525859bf226445c75b96541e495c14b5e46ba'/>
<id>960525859bf226445c75b96541e495c14b5e46ba</id>
<content type='text'>
Same as the previous commit, except I'm copying strings
in the other direction because the DolphinWX variants
of these strings could use some improvement.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Same as the previous commit, except I'm copying strings
in the other direction because the DolphinWX variants
of these strings could use some improvement.
</pre>
</div>
</content>
</entry>
<entry>
<title>Replace balanced Core::PauseAndLock calls with RunAsCPUThread</title>
<updated>2017-07-21T08:45:59+00:00</updated>
<author>
<name>Léo Lam</name>
<email>leo@innovatetechnologi.es</email>
</author>
<published>2017-07-21T06:06:02+00:00</published>
<link rel='alternate' type='text/html' href='https://git.dog6.net/dolphin/commit/?id=f106a9637df3f1cb31a09d451729cae1acdc63cb'/>
<id>f106a9637df3f1cb31a09d451729cae1acdc63cb</id>
<content type='text'>
Core::PauseAndLock requires all calls to it to be balanced, like this:

    const bool was_unpaused = Core::PauseAndLock(true);
    // do stuff on the CPU thread
    Core::PauseAndLock(false, was_unpaused);

Aside from being a bit cumbersome, it turns out all callers really
don't need to know about was_unpaused at all. They just need to do
something on the CPU thread safely, including locking/unlocking.

So this commit replaces Core::PauseAndLock with a function that
makes both the purpose and the scope of what is being run on the
CPU thread visually clear. This makes it harder to accidentally run
something on the wrong thread, or forget the second call to
PauseAndLock to unpause, or forget that it needs to be passed
was_unpaused at the end.

We also don't need comments to indicate code X is being run on the
CPU thread anymore, as the function name makes it obvious.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Core::PauseAndLock requires all calls to it to be balanced, like this:

    const bool was_unpaused = Core::PauseAndLock(true);
    // do stuff on the CPU thread
    Core::PauseAndLock(false, was_unpaused);

Aside from being a bit cumbersome, it turns out all callers really
don't need to know about was_unpaused at all. They just need to do
something on the CPU thread safely, including locking/unlocking.

So this commit replaces Core::PauseAndLock with a function that
makes both the purpose and the scope of what is being run on the
CPU thread visually clear. This makes it harder to accidentally run
something on the wrong thread, or forget the second call to
PauseAndLock to unpause, or forget that it needs to be passed
was_unpaused at the end.

We also don't need comments to indicate code X is being run on the
CPU thread anymore, as the function name makes it obvious.
</pre>
</div>
</content>
</entry>
<entry>
<title>GCAdapterConfigDiag: Mark OnUpdateAdapter parameter as unused.</title>
<updated>2016-11-11T01:19:53+00:00</updated>
<author>
<name>Lioncash</name>
<email>mathew1800@gmail.com</email>
</author>
<published>2016-11-11T01:19:53+00:00</published>
<link rel='alternate' type='text/html' href='https://git.dog6.net/dolphin/commit/?id=2d9ef3412a719e007c200cfd04952e32e57b4eb1'/>
<id>2d9ef3412a719e007c200cfd04952e32e57b4eb1</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>GCAdapterConfigDiag: Rename UpdateAdapter to OnUpdateAdapter</title>
<updated>2016-11-11T01:18:59+00:00</updated>
<author>
<name>Lioncash</name>
<email>mathew1800@gmail.com</email>
</author>
<published>2016-11-11T01:18:12+00:00</published>
<link rel='alternate' type='text/html' href='https://git.dog6.net/dolphin/commit/?id=1ae9027a6b858b2a1050eb47d370838c64ec354b'/>
<id>1ae9027a6b858b2a1050eb47d370838c64ec354b</id>
<content type='text'>
Uses the general naming convention for event functions.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Uses the general naming convention for event functions.
</pre>
</div>
</content>
</entry>
<entry>
<title>GCAdapterConfigDiag: Cull includes in header file</title>
<updated>2016-10-20T14:09:19+00:00</updated>
<author>
<name>Lioncash</name>
<email>mathew1800@gmail.com</email>
</author>
<published>2016-10-20T14:09:15+00:00</published>
<link rel='alternate' type='text/html' href='https://git.dog6.net/dolphin/commit/?id=24cf46aa5a3fb9bc09796859177b12f9259224b2'/>
<id>24cf46aa5a3fb9bc09796859177b12f9259224b2</id>
<content type='text'>
Prevents dragging in unnecessary headers into other including files.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Prevents dragging in unnecessary headers into other including files.
</pre>
</div>
</content>
</entry>
<entry>
<title>WX: HiDPI: ControllerConfigDiag</title>
<updated>2016-10-04T02:47:22+00:00</updated>
<author>
<name>EmptyChaos</name>
<email>EmptyChaos@users.noreply.github.com</email>
</author>
<published>2016-08-02T06:22:44+00:00</published>
<link rel='alternate' type='text/html' href='https://git.dog6.net/dolphin/commit/?id=741dfce05e74e2dcafe250893a3f882ecd6b01b1'/>
<id>741dfce05e74e2dcafe250893a3f882ecd6b01b1</id>
<content type='text'>
Minor appearance change to align wiimote and gamecube sections.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Minor appearance change to align wiimote and gamecube sections.
</pre>
</div>
</content>
</entry>
<entry>
<title>Change the Wii U GC Adapter Dialog button from 'OK' to 'Close'</title>
<updated>2016-08-16T10:28:49+00:00</updated>
<author>
<name>Julian Löhr</name>
<email>julian.loehr@outlook.com</email>
</author>
<published>2016-08-16T01:05:17+00:00</published>
<link rel='alternate' type='text/html' href='https://git.dog6.net/dolphin/commit/?id=41e64cfdfc777409f6462c38906d1c096b8f83ec'/>
<id>41e64cfdfc777409f6462c38906d1c096b8f83ec</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Reformat all the things. Have fun with merge conflicts.</title>
<updated>2016-06-24T08:43:46+00:00</updated>
<author>
<name>Pierre Bourdon</name>
<email>delroth@gmail.com</email>
</author>
<published>2016-06-24T08:43:46+00:00</published>
<link rel='alternate' type='text/html' href='https://git.dog6.net/dolphin/commit/?id=3570c7f03a2aa90aa634f96c0af1969af610f14d'/>
<id>3570c7f03a2aa90aa634f96c0af1969af610f14d</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Use the English name for DK Bongos in the English version of Dolphin</title>
<updated>2016-01-06T23:12:25+00:00</updated>
<author>
<name>JosJuice</name>
<email>josjuice@gmail.com</email>
</author>
<published>2016-01-06T23:12:25+00:00</published>
<link rel='alternate' type='text/html' href='https://git.dog6.net/dolphin/commit/?id=85ab84935afd384d75d1ba045f4a915dc1b622c5'/>
<id>85ab84935afd384d75d1ba045f4a915dc1b622c5</id>
<content type='text'>
Tarukonga is Japanese. People who don't speak Japanese are unlikely to
understand it.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Tarukonga is Japanese. People who don't speak Japanese are unlikely to
understand it.
</pre>
</div>
</content>
</entry>
</feed>
