diff options
| author | engineer124 <47598039+engineer124@users.noreply.github.com> | 2023-06-21 13:13:51 +1000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-06-20 23:13:51 -0400 |
| commit | 9c0fc94fe3c331fb125a4e4c23409f527f35c023 (patch) | |
| tree | 88adb904c63873b98e410ac3e0f1dc5df596b72c /src/code/z_map_exp.c | |
| parent | 7194936203917389a013c35be24d1675d8044a0f (diff) | |
Audio Sfx Functions Decompiled and Documented (code_8019AF00.c) (#1242)
* sfx decomp and docs
* function headers
* namefixer
* oops
* better sfx name
* PR review
* namefixer
* PR review
* float
* namefixer
* namefixer
* namefixer
* PR Suggestions
Diffstat (limited to 'src/code/z_map_exp.c')
| -rw-r--r-- | src/code/z_map_exp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/code/z_map_exp.c b/src/code/z_map_exp.c index 912926cbb..c087fe059 100644 --- a/src/code/z_map_exp.c +++ b/src/code/z_map_exp.c @@ -230,9 +230,9 @@ void Map_Update(PlayState* play) { if ((play->pauseCtx.state <= PAUSE_STATE_OPENING_2) && (CHECK_BTN_ALL(controller->press.button, BTN_L)) && !Play_InCsMode(play) && !func_80106530(play)) { if (!R_MINIMAP_DISABLED) { - play_sound(NA_SE_SY_CAMERA_ZOOM_UP); + Audio_PlaySfx(NA_SE_SY_CAMERA_ZOOM_UP); } else { - play_sound(NA_SE_SY_CAMERA_ZOOM_DOWN); + Audio_PlaySfx(NA_SE_SY_CAMERA_ZOOM_DOWN); } R_MINIMAP_DISABLED ^= 1; |
