<feed xmlns='http://www.w3.org/2005/Atom'>
<title>SpaghettiKart/src/code_80091440.h, branch transformsharedfromptr</title>
<subtitle>SpaghettiKart: Mario Kart 64 PC port</subtitle>
<link rel='alternate' type='text/html' href='https://git.dog6.net/SpaghettiKart/'/>
<entry>
<title>Renames &amp; seg 3 &amp; 5 texture fixes (#19)</title>
<updated>2024-07-26T17:29:35+00:00</updated>
<author>
<name>MegaMech</name>
<email>MegaMech@users.noreply.github.com</email>
</author>
<published>2024-07-26T17:29:35+00:00</published>
<link rel='alternate' type='text/html' href='https://git.dog6.net/SpaghettiKart/commit/?id=532ad5a4c03d7098b316ac1ebf2c467525442791'/>
<id>532ad5a4c03d7098b316ac1ebf2c467525442791</id>
<content type='text'>
* Remove tools/torch

* Auto compile torch and extract

* Re-implement soh's implementation of lus implementation of an array

* Fix static actors in mr

* Update

* Updated torch

* Updated lus

* uncomment

* Fix collision

* Renames

* More renaming

* Collision Renames

* Update collision.c

* Collision Documentation (#640)

* Collision related renames

* Update

* update lus

* Bug fixes

* remove tabs

* fixes

* fixes

* Fix kart textures

* Networking

* net

* Add networking

* Update

* Cleanup

* Fix balloon rendering

* Fix lakitu and red shell

* fixes

* Implement new random system

---------

Co-authored-by: MegaMech &lt;7255464+MegaMech@users.noreply.github.com&gt;</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* Remove tools/torch

* Auto compile torch and extract

* Re-implement soh's implementation of lus implementation of an array

* Fix static actors in mr

* Update

* Updated torch

* Updated lus

* uncomment

* Fix collision

* Renames

* More renaming

* Collision Renames

* Update collision.c

* Collision Documentation (#640)

* Collision related renames

* Update

* update lus

* Bug fixes

* remove tabs

* fixes

* fixes

* Fix kart textures

* Networking

* net

* Add networking

* Update

* Cleanup

* Fix balloon rendering

* Fix lakitu and red shell

* fixes

* Implement new random system

---------

Co-authored-by: MegaMech &lt;7255464+MegaMech@users.noreply.github.com&gt;</pre>
</div>
</content>
</entry>
<entry>
<title>WIP Compilation</title>
<updated>2024-05-01T16:09:49+00:00</updated>
<author>
<name>KiritoDv</name>
<email>kiritodev01@gmail.com</email>
</author>
<published>2024-05-01T16:09:49+00:00</published>
<link rel='alternate' type='text/html' href='https://git.dog6.net/SpaghettiKart/commit/?id=a2c3feb67a2f8afb1cebd0e77e4a3e23db2c28c4'/>
<id>a2c3feb67a2f8afb1cebd0e77e4a3e23db2c28c4</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Header cleanup and some renames (#616)</title>
<updated>2024-04-21T01:10:53+00:00</updated>
<author>
<name>MegaMech</name>
<email>MegaMech@users.noreply.github.com</email>
</author>
<published>2024-04-21T01:10:53+00:00</published>
<link rel='alternate' type='text/html' href='https://git.dog6.net/SpaghettiKart/commit/?id=7a10ba89f6bf26fd4b659510fefb2ce1cd315f02'/>
<id>7a10ba89f6bf26fd4b659510fefb2ce1cd315f02</id>
<content type='text'>
* Place macros for addr conversions

* dl renames

* fixes

* changes ok

* Delete types.h

* move enums</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* Place macros for addr conversions

* dl renames

* fixes

* changes ok

* Delete types.h

* move enums</pre>
</div>
</content>
</entry>
<entry>
<title>Match bss for code_800029B0 and clean headers (#406)</title>
<updated>2023-09-08T19:39:13+00:00</updated>
<author>
<name>MegaMech</name>
<email>MegaMech@users.noreply.github.com</email>
</author>
<published>2023-09-08T19:39:13+00:00</published>
<link rel='alternate' type='text/html' href='https://git.dog6.net/SpaghettiKart/commit/?id=208fecdd28bdc3424d6ebf09f1eab23f271467b6'/>
<id>208fecdd28bdc3424d6ebf09f1eab23f271467b6</id>
<content type='text'>
* Match bss for code_800029B0 and clean headers

* Fix dvdl and a warning</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* Match bss for code_800029B0 and clean headers

* Fix dvdl and a warning</pre>
</div>
</content>
</entry>
<entry>
<title>Put `void` in several function prototypes (#387)</title>
<updated>2023-08-26T18:48:45+00:00</updated>
<author>
<name>Tyler McGavran</name>
<email>tyler.taggerung@gmail.com</email>
</author>
<published>2023-08-26T18:48:45+00:00</published>
<link rel='alternate' type='text/html' href='https://git.dog6.net/SpaghettiKart/commit/?id=31d3ac14ec865363a273b804628f40ba5442a256'/>
<id>31d3ac14ec865363a273b804628f40ba5442a256</id>
<content type='text'>
I have historically made prototypes for argument-less functions
 with just plain `()` for the argument list. This has caused some
 minor pains when using `m2c` and is, pendatically, incorrect.

So I have changed all argument-less function protoypes to instead
 have `(void)` as the argument list. This required a couple small
 fixes here and there.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
I have historically made prototypes for argument-less functions
 with just plain `()` for the argument list. This has caused some
 minor pains when using `m2c` and is, pendatically, incorrect.

So I have changed all argument-less function protoypes to instead
 have `(void)` as the argument list. This required a couple small
 fixes here and there.</pre>
</div>
</content>
</entry>
<entry>
<title>Matched code_80091440.c and named gDemoMode variable (#358)</title>
<updated>2023-08-09T20:53:55+00:00</updated>
<author>
<name>MegaMech</name>
<email>MegaMech@users.noreply.github.com</email>
</author>
<published>2023-08-09T20:53:55+00:00</published>
<link rel='alternate' type='text/html' href='https://git.dog6.net/SpaghettiKart/commit/?id=870c39ad7772ec2d28686c7a883236be00179dc1'/>
<id>870c39ad7772ec2d28686c7a883236be00179dc1</id>
<content type='text'>
* matched code_80091440.c

* Named gDemoMode

* Remove asm for matching func

* Matched and namings for random_u16_credits func in code_80280650.c</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* matched code_80091440.c

* Named gDemoMode

* Remove asm for matching func

* Matched and namings for random_u16_credits func in code_80280650.c</pre>
</div>
</content>
</entry>
<entry>
<title>Move plan data for code_8008C1D0 into asm files (#340)</title>
<updated>2023-07-11T18:54:39+00:00</updated>
<author>
<name>Tyler McGavran</name>
<email>tyler.taggerung@gmail.com</email>
</author>
<published>2023-07-11T18:54:39+00:00</published>
<link rel='alternate' type='text/html' href='https://git.dog6.net/SpaghettiKart/commit/?id=890aaee1620043ab3a998b03ba7a28471732bcd7'/>
<id>890aaee1620043ab3a998b03ba7a28471732bcd7</id>
<content type='text'>
Had to create a new file in order to get stuff matching right,
 even though making a separate file for just 3 functions is
 incredibly silly.

Signed-off-by: Taggerung &lt;tyler.taggerung@email.com&gt;</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Had to create a new file in order to get stuff matching right,
 even though making a separate file for just 3 functions is
 incredibly silly.

Signed-off-by: Taggerung &lt;tyler.taggerung@email.com&gt;</pre>
</div>
</content>
</entry>
</feed>
