Commit Graph

1212 Commits

Author SHA1 Message Date
Chuli
a5d2e2d147 update v5 (to cmake-docs branch rq) 2023-07-01 05:13:28 -05:00
st×tic
fb13d7319d
Merge pull request #190 from foxsouns/patch-1
linux instructions
2023-07-01 05:11:15 -05:00
st×tic
cfc899467d
Merge pull request #194 from LittlePlanetCD/fixSilverMSBomb
fix Silver Sonic's MSBomb projectile
2023-07-01 05:07:04 -05:00
st×tic
1c48aece30
Merge pull request #191 from LittlePlanetCD/fix-itemboxrender
fix itembox content render not updating.
2023-07-01 05:06:53 -05:00
st×tic
8cf4b53b94
Merge pull request #189 from LittlePlanetCD/master
Fix Bark & Other misc. HeavyMystic things.
2023-07-01 05:06:42 -05:00
LittlePlanetCD
6101a12d5b the fix but actually accurate: 2023-06-14 03:04:32 -05:00
LittlePlanetCD
8e8eb1b390 fix Silver Sonic's MSBomb projectile 2023-06-13 23:39:06 -05:00
LittlePlanetCD
57f370b6bd fix itembox content render 2023-05-24 14:33:40 -05:00
LittlePlanetCD
dc3b7b766e
Merge branch 'Rubberduckycooly:master' into master 2023-05-24 14:27:40 -05:00
Chuli
717580bb0c Merge branch 'master' of https://github.com/Rubberduckycooly/Sonic-Mania-Decompilation 2023-05-21 18:16:48 -05:00
Chuli
b39885ae62 real submodule hours for the DC guy 2023-05-21 18:16:45 -05:00
Chuli
d210ec9141 real submodule hours for the DC guy 2023-05-21 18:15:06 -05:00
fox
d78cd4275e
wow no head 2023-05-14 14:58:12 -07:00
fox
16bd3098e3
this is still on v1??????? 2023-05-14 14:52:13 -07:00
fox
770a7cac15
yeah plat form 2023-05-14 14:46:07 -07:00
fox
0a5f508230
linux instructions
finally!
2023-05-14 14:35:02 -07:00
LittlePlanetCD
e1e24aceee fix indentation (oops) 2023-05-10 05:11:52 -05:00
LittlePlanetCD
2d6c3046c3 Fix Bark taking no knockback & grammatical errors relating to the Rogues. 2023-05-10 05:04:45 -05:00
st×tic
551516ffe8
merp 2023-05-07 00:39:15 -05:00
st×tic
51b01b0a62
i broke github with this commit
made some changes to the cmake to work better for platform specific cmakes
RETRO_INCLUDE_EDITOR changed to GAME_INCLUDE_EDITOR, former still supported
added GAME_VERSION, GAME_INCLUDE_EDITOR, MANIA_PREPLUS, and MANIA_FIRST_RELEASE to the cmake
2023-05-06 12:49:29 -05:00
Chuli
fd2c0b6060 oops i shoud push this 2023-04-12 18:18:31 -05:00
st×tic
89c3e04d90
fix editor=0 2023-04-09 14:24:43 -05:00
Chuli
59c18f59de update submodule bc i can 2023-03-29 19:45:54 -05:00
Chuli
7a4a021057 allow for alternate RSDK 2023-03-11 13:54:43 -06:00
Chuli
ff82bdcfc1 oops 2023-03-06 18:36:40 -06:00
Chuli
7eff8e49fe if you regret, resetttt the gaaaame 2023-03-06 18:36:35 -06:00
Chuli
d67306e3ae who up 2023-03-06 11:48:09 -06:00
Chuli
c82b085ed1 wait maybe i forgot to fix this wait 2023-03-05 22:56:44 -06:00
Chuli
00c142bd07 The new 2023-03-05 22:53:37 -06:00
st×tic
4ef543749a
Merge pull request #179 from Mefiresu/fix-no-editor
Fix build when disabling the editor
2023-02-02 20:53:06 -06:00
Mefiresu
2729447e4a Fix build when disabling the editor
Some macros aren't available when building without editor support.
Make them available at all times, and`#ifdef RETRO_INCLUDE_EDITOR`
for Editor functions.
2023-02-03 03:44:54 +01:00
st×tic
824a4d76af
Merge pull request #178 from GeffDev/master
Fix graphical corruption in the Android and Switch rev01 video filter menu
2023-02-02 18:59:40 -06:00
st×tic
f0940337eb
oh 2023-01-27 15:48:03 -06:00
GeffDev
96db53fb27 it ain't pretty but it works? 2023-01-27 23:41:49 +08:00
GeffDev
cf3e055c57 change zonePalette to zoneID in UIPicture 2023-01-27 22:43:22 +08:00
st×tic
70c113c74d
Merge pull request #176 from Mefiresu/instashield-fix
Fix Insta-Shield hitbox
2023-01-26 16:55:09 -06:00
Chuli
0f75401660 yippee!!!
fixes platform-itembox bugs and makes platform hurt use touch
also makes v5u the default i don't rmemeber doing that
2023-01-25 14:11:26 -06:00
Mefiresu
b4123012c5 Fix Insta-Shield hitbox
The `tempHitbox` variable was only valid inside of the if, which
lead to undefined behavior when using its address afterwards.
While not an issue on MSVC, more aggressive compilers like GCC (O3)
and Clang (O1) took advantage of this range limit to further
optimize the code, and caused all sorts of bugs on Linux/Android.
2023-01-25 00:49:20 +01:00
Chuli
3e0c356c17
Merge pull request #174 from Clownacy/fixes10
Fix pinball bugs
2023-01-19 14:32:14 -06:00
Clownacy
d2f4f5f40c Fix Pinball bugs
This fixes two bugs:

- If you get multiple different shields in the crane game, then the
character may have a bugged 'null' shield upon returning to the
level. This is caused by the IDs of the obtained shields being OR'd
together, producing an invalid ID.

- In Mania Mode, the crane game should offer 1UPs, but an incorrect
`RSDK::Rand` parameter was preventing it from doing so.

Both of these fixes have been verified against the assembly code of
the latest Steam EXE.
2022-12-21 19:59:47 +00:00
Chuli
e74c0005fb erm.... what the scallop ??? 2022-11-15 09:58:13 -06:00
Rubberduckycooly
720b1416e2 unused variable ◀️ 2022-10-23 16:23:47 +11:00
Rubberduckycooly
df2d764106 misc formatting 2022-10-22 15:35:10 +11:00
Rubberduckycooly
03b9d3f950 please 2022-10-22 14:42:56 +11:00
Rubberduckycooly
e89b122fac I'm seriously running out of ideas as to whats wrong 😭 2022-10-22 14:38:26 +11:00
Rubberduckycooly
f9365900cf try fix ray glide 2022-10-22 11:36:44 +11:00
Rubberduckycooly
09626c79e7 as simple as that 2022-10-16 18:03:38 +11:00
Rubberduckycooly
29d7b8f04b oops :] 2022-10-16 17:58:35 +11:00
Rubberduckycooly
71d3c34446
Merge pull request #161 from Clownacy/fixes9
Correct `InitString` parameters.
2022-10-12 19:11:13 +11:00
Rubberduckycooly
6e53df247f
Merge pull request #158 from Clownacy/fixes8
Fix crash in the PGZ2 outro.
2022-10-12 19:10:57 +11:00