mirror of
https://github.com/HarbourMasters/Shipwright.git
synced 2025-08-21 05:43:42 -07:00
fix typo
This commit is contained in:
parent
4e2f99721b
commit
c45ee055e5
2 changed files with 3 additions and 4 deletions
|
@ -1,5 +1,5 @@
|
||||||
#ifndef ACCESSIBLE_AUDIO_ENGINE_H
|
#pragma once
|
||||||
#define ACCESSIBLE_AUDIO_ENGINE_H
|
|
||||||
#include "miniaudio/miniaudio.h"
|
#include "miniaudio/miniaudio.h"
|
||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
#include <thread>
|
#include <thread>
|
||||||
|
@ -149,4 +149,3 @@ class AccessibleAudioEngine {
|
||||||
void prepare();
|
void prepare();
|
||||||
void cacheDecodedSample(std::string& path, void* data, size_t size);
|
void cacheDecodedSample(std::string& path, void* data, size_t size);
|
||||||
};
|
};
|
||||||
#endif
|
|
||||||
|
|
|
@ -441,7 +441,7 @@ void ActorAccessibility_RunAccessibilityForAllActors(PlayState* play) {
|
||||||
aa->currentRoom = play->roomCtx.curRoom.num;
|
aa->currentRoom = play->roomCtx.curRoom.num;
|
||||||
}
|
}
|
||||||
if (aa->glossary->currentScene != play->sceneNum || aa->glossary->currentRoom != play->roomCtx.curRoom.num) {
|
if (aa->glossary->currentScene != play->sceneNum || aa->glossary->currentRoom != play->roomCtx.curRoom.num) {
|
||||||
if (aa->glossary->GlossaryStarted = true) {
|
if (aa->glossary->GlossaryStarted) {
|
||||||
aa->glossary->cooldown = 0;
|
aa->glossary->cooldown = 0;
|
||||||
aa->glossary->GlossaryStarted = false;
|
aa->glossary->GlossaryStarted = false;
|
||||||
freezeActors = false;
|
freezeActors = false;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue