diff options
| author | robojumper <robojumper@gmail.com> | 2025-07-06 23:55:57 +0200 |
|---|---|---|
| committer | robojumper <robojumper@gmail.com> | 2025-09-13 10:59:41 +0200 |
| commit | f50222e997df9b8f4e7511fda7b2cac9b7a7edb9 (patch) | |
| tree | 0dfce3f16d776d5df14683d40f6b48bda621870d /include | |
| parent | 73f1060a165633a631a15968011b67598ca9ba71 (diff) | |
Fix one regswap
Diffstat (limited to 'include')
| -rw-r--r-- | include/d/snd/d_snd_bgm_mgr.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/d/snd/d_snd_bgm_mgr.h b/include/d/snd/d_snd_bgm_mgr.h index 9dc08c9f..5a4400be 100644 --- a/include/d/snd/d_snd_bgm_mgr.h +++ b/include/d/snd/d_snd_bgm_mgr.h @@ -84,6 +84,11 @@ public: bool weirdCheckAlwaysFalse(); dSndBgmSound_c *getActiveBgmSound(); + // I don't love this inline but it fixes one regswap + // TODO look into getting rid of this one + dSndBgmSound_c *getActiveBgmSound_i() { + return getActiveBgmSound(); + } private: dSndBgmBattleSound_c *getBgmBattleSound(); |
