<feed xmlns='http://www.w3.org/2005/Atom'>
<title>dolphin/Source/Core/InputCommon/ControllerInterface/ForceFeedback, branch stable</title>
<subtitle>GameCube and Wii emulator</subtitle>
<link rel='alternate' type='text/html' href='https://git.dog6.net/dolphin/'/>
<entry>
<title>Update license headers to GPLv2+</title>
<updated>2015-05-25T11:22:31+00:00</updated>
<author>
<name>Tillmann Karras</name>
<email>tilkax@gmail.com</email>
</author>
<published>2015-05-17T23:08:10+00:00</published>
<link rel='alternate' type='text/html' href='https://git.dog6.net/dolphin/commit/?id=cefcb0ace9d363b3679b4e93bcc9ec05f1e5f4f8'/>
<id>cefcb0ace9d363b3679b4e93bcc9ec05f1e5f4f8</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>ForceFeedback: Apply immediately as well</title>
<updated>2014-11-28T18:54:04+00:00</updated>
<author>
<name>Jasper St. Pierre</name>
<email>jstpierre@mecheye.net</email>
</author>
<published>2014-11-13T09:27:26+00:00</published>
<link rel='alternate' type='text/html' href='https://git.dog6.net/dolphin/commit/?id=86e4da2c071b6185803ed40045497bcf4e325f0d'/>
<id>86e4da2c071b6185803ed40045497bcf4e325f0d</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>ControllerInterface: Make UpdateInput / UpdateOutput return void</title>
<updated>2014-11-28T18:50:45+00:00</updated>
<author>
<name>Jasper St. Pierre</name>
<email>jstpierre@mecheye.net</email>
</author>
<published>2014-11-13T08:55:14+00:00</published>
<link rel='alternate' type='text/html' href='https://git.dog6.net/dolphin/commit/?id=f2787f620eebbbfb746f59cfbd0318210297061b'/>
<id>f2787f620eebbbfb746f59cfbd0318210297061b</id>
<content type='text'>
The return values here have never been checked, so it doesn't make sense
to return a value to begin with.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The return values here have never been checked, so it doesn't make sense
to return a value to begin with.
</pre>
</div>
</content>
</entry>
<entry>
<title>Add missing includes where headers depend on other headers having been included first.</title>
<updated>2014-10-22T01:22:16+00:00</updated>
<author>
<name>comex</name>
<email>comexk@gmail.com</email>
</author>
<published>2014-10-21T06:01:38+00:00</published>
<link rel='alternate' type='text/html' href='https://git.dog6.net/dolphin/commit/?id=6e774f1b6457939c61c7fe5a0b19c4751e8bb61e'/>
<id>6e774f1b6457939c61c7fe5a0b19c4751e8bb61e</id>
<content type='text'>
This is good hygiene, and also happens to be required to build Dolphin
using Clang modules.

(Under this setup, each header file becomes a module, and each #include
is automatically translated to a module import.  Recursive includes
still leak through (by default), but modules are compiled independently,
and can't depend on defines or types having previously been set up.  The
main reason to retrofit it onto Dolphin is compilation performance - no
more textual includes whatsoever, rather than putting a few blessed
common headers into a PCH.  Unfortunately, I found multiple Clang bugs
while trying to build Dolphin this way, so it's not ready yet, but I can
start with this prerequisite.)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This is good hygiene, and also happens to be required to build Dolphin
using Clang modules.

(Under this setup, each header file becomes a module, and each #include
is automatically translated to a module import.  Recursive includes
still leak through (by default), but modules are compiled independently,
and can't depend on defines or types having previously been set up.  The
main reason to retrofit it onto Dolphin is compilation performance - no
more textual includes whatsoever, rather than putting a few blessed
common headers into a PCH.  Unfortunately, I found multiple Clang bugs
while trying to build Dolphin this way, so it's not ready yet, but I can
start with this prerequisite.)
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix building Dolphin on OSX without precompiled headers</title>
<updated>2014-09-21T04:37:47+00:00</updated>
<author>
<name>Lioncash</name>
<email>mathew1800@gmail.com</email>
</author>
<published>2014-09-21T04:37:47+00:00</published>
<link rel='alternate' type='text/html' href='https://git.dog6.net/dolphin/commit/?id=a04a99251fa59bbce1fa7968fba7e25585cc78e1'/>
<id>a04a99251fa59bbce1fa7968fba7e25585cc78e1</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>windows: remove now-extraneous NOMINMAX and WIN32_LEAN_AND_MEAN #defines from dolphin code.</title>
<updated>2014-08-23T17:48:48+00:00</updated>
<author>
<name>Shawn Hoffman</name>
<email>godisgovernment@gmail.com</email>
</author>
<published>2014-08-23T00:17:49+00:00</published>
<link rel='alternate' type='text/html' href='https://git.dog6.net/dolphin/commit/?id=327d35377dd0edfcb3f0a5d7b2853f23102eb950'/>
<id>327d35377dd0edfcb3f0a5d7b2853f23102eb950</id>
<content type='text'>
Wrap dinput.h in a header defining DIRECTINPUT_VERSION instead of repeating it multiple places.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Wrap dinput.h in a header defining DIRECTINPUT_VERSION instead of repeating it multiple places.
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge pull request #665 from lioncash/cisms</title>
<updated>2014-07-24T23:30:29+00:00</updated>
<author>
<name>Pierre Bourdon</name>
<email>delroth@gmail.com</email>
</author>
<published>2014-07-24T23:30:29+00:00</published>
<link rel='alternate' type='text/html' href='https://git.dog6.net/dolphin/commit/?id=264459457e738a574c83c151f0b39086759d5845'/>
<id>264459457e738a574c83c151f0b39086759d5845</id>
<content type='text'>
Get rid of a few C-style struct declarations</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Get rid of a few C-style struct declarations</pre>
</div>
</content>
</entry>
<entry>
<title>InputCommon: Include the algorithm header in ForceFeedbackDevice</title>
<updated>2014-07-24T22:55:12+00:00</updated>
<author>
<name>Lioncash</name>
<email>mathew1800@gmail.com</email>
</author>
<published>2014-07-24T22:55:09+00:00</published>
<link rel='alternate' type='text/html' href='https://git.dog6.net/dolphin/commit/?id=6186a293f697c2b1f629e2cda04652fbafaa14bb'/>
<id>6186a293f697c2b1f629e2cda04652fbafaa14bb</id>
<content type='text'>
Also simplified the casting within a std::max call
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Also simplified the casting within a std::max call
</pre>
</div>
</content>
</entry>
<entry>
<title>Get rid of a few C-style struct declarations</title>
<updated>2014-07-24T00:36:45+00:00</updated>
<author>
<name>Lioncash</name>
<email>mathew1800@gmail.com</email>
</author>
<published>2014-07-24T00:26:54+00:00</published>
<link rel='alternate' type='text/html' href='https://git.dog6.net/dolphin/commit/?id=5767691f4e9260b25f440ef42bb9853aeba89b56'/>
<id>5767691f4e9260b25f440ef42bb9853aeba89b56</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove all trailing whitespaces from our codebase.</title>
<updated>2014-03-29T10:05:44+00:00</updated>
<author>
<name>Pierre Bourdon</name>
<email>delroth@gmail.com</email>
</author>
<published>2014-03-29T10:05:44+00:00</published>
<link rel='alternate' type='text/html' href='https://git.dog6.net/dolphin/commit/?id=664c8d30a055f4762a2a60be77c1c8eaec1a5d85'/>
<id>664c8d30a055f4762a2a60be77c1c8eaec1a5d85</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
